summaryrefslogtreecommitdiff
path: root/Tools/WebKitTestRunner/Options.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Tools/WebKitTestRunner/Options.h
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Tools/WebKitTestRunner/Options.h')
-rw-r--r--Tools/WebKitTestRunner/Options.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Tools/WebKitTestRunner/Options.h b/Tools/WebKitTestRunner/Options.h
index a89d25c77..5549fe464 100644
--- a/Tools/WebKitTestRunner/Options.h
+++ b/Tools/WebKitTestRunner/Options.h
@@ -1,6 +1,7 @@
/*
* Copyright (C) 2013 University of Szeged. All rights reserved.
* Copyright (C) 2013 Samsung Electronics. All rights reserved.
+ * Copyright (C) 2015 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -36,9 +37,7 @@
namespace WTR {
struct Options {
- Options(double, double);
- double longTimeout;
- double shortTimeout;
+ Options();
bool useWaitToDumpWatchdogTimer;
bool forceNoTimeout;
bool verbose;
@@ -48,9 +47,9 @@ struct Options {
bool forceComplexText;
bool shouldUseAcceleratedDrawing;
bool shouldUseRemoteLayerTree;
+ bool shouldShowWebView;
std::vector<std::string> paths;
- double defaultLongTimeout;
- double defaultShortTimeout;
+ std::vector<std::string> allowedHosts;
};
class Option {