diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 22:56:12 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-29 22:56:12 +0000 |
commit | 27d8c1ba2b7990e45e8498264224a11a082d5b82 (patch) | |
tree | 7a884086f01f7687cef6aa2fab1e85815233b1a5 /webkit/tools/test_shell/test_shell.h | |
parent | ea3f5cf79a8e5d9cd9825bcbc71d448534350135 (diff) | |
download | chromium_src-27d8c1ba2b7990e45e8498264224a11a082d5b82.zip chromium_src-27d8c1ba2b7990e45e8498264224a11a082d5b82.tar.gz chromium_src-27d8c1ba2b7990e45e8498264224a11a082d5b82.tar.bz2 |
Split test_shell.cc into test_shell.cc and test_shell_win.cc.
This currently moves too much code out of test_shell.cc, but
I wanted to be able to just move code now and I'll refactor
stuff back into test_shell.cc
I also tried to make test_shell_win.cc conform to google
style.
Review URL: http://codereview.chromium.org/8209
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4182 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell.h')
-rw-r--r-- | webkit/tools/test_shell/test_shell.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h index abab9db..a0e7f34 100644 --- a/webkit/tools/test_shell/test_shell.h +++ b/webkit/tools/test_shell/test_shell.h @@ -80,6 +80,10 @@ public: static bool interactive() { return interactive_; } + // Called from the destructor to let each platform do any necessary + // cleanup. + void PlatformCleanUp(); + WebView* webView() { return m_webViewHost.get() ? m_webViewHost->webview() : NULL; } |