diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-24 16:11:28 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-24 16:11:28 +0000 |
commit | d5a276e97343c5a85c48bbbc9d1218ef943f6707 (patch) | |
tree | 04b0a3ce704406a7719e15e42e6450b2a4080465 /webkit/tools/test_shell/test_shell.h | |
parent | 176ac084a381538e4f904f936d085fb42c3cf15c (diff) | |
download | chromium_src-d5a276e97343c5a85c48bbbc9d1218ef943f6707.zip chromium_src-d5a276e97343c5a85c48bbbc9d1218ef943f6707.tar.gz chromium_src-d5a276e97343c5a85c48bbbc9d1218ef943f6707.tar.bz2 |
DevTools: Migrate to new WebView initialization (pass devtools client directly).
Review URL: http://codereview.chromium.org/2864020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50726 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell.h')
-rwxr-xr-x[-rw-r--r--] | webkit/tools/test_shell/test_shell.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h index 21d8856..f415d54 100644..100755 --- a/webkit/tools/test_shell/test_shell.h +++ b/webkit/tools/test_shell/test_shell.h @@ -92,7 +92,7 @@ public: static void CleanupLogging(); // Initialization and clean up of a static member variable. - static void InitializeTestShell(bool layout_test_mode, + static void InitializeTestShell(bool layout_test_mode, bool allow_external_pages); static void ShutdownTestShell(); @@ -329,7 +329,6 @@ public: protected: void CreateDevToolsClient(TestShellDevToolsAgent* agent); bool Initialize(const GURL& starting_url); - void InitializeDevToolsAgent(WebKit::WebView* webView); bool IsSVGTestURL(const GURL& url); void SizeToSVG(); void SizeToDefault(); @@ -386,9 +385,9 @@ private: // True when the app is being run using the --layout-tests switch. static bool layout_test_mode_; - + // True when we wish to allow test shell to load external pages like - // www.google.com even when in --layout-test mode (used for QA to + // www.google.com even when in --layout-test mode (used for QA to // produce images of the rendered page) static bool allow_external_pages_; |