diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 19:33:34 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 19:33:34 +0000 |
commit | 33410c838b3d0ad411bb16b905e0188eacb40fb9 (patch) | |
tree | 52a98500792b161b07cf510159958eb5af7956cf /webkit/tools/test_shell/test_shell.h | |
parent | 79d3f1e0cd308344a0b59c28e4d305252267a409 (diff) | |
download | chromium_src-33410c838b3d0ad411bb16b905e0188eacb40fb9.zip chromium_src-33410c838b3d0ad411bb16b905e0188eacb40fb9.tar.gz chromium_src-33410c838b3d0ad411bb16b905e0188eacb40fb9.tar.bz2 |
Enable support for notifications layout tests in test shell.
BUG=none
TEST=notifications layout tests
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=44372
Reverted.
Review URL: http://codereview.chromium.org/1549039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44515 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 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h index 12227a0..f07b5a1 100644 --- a/webkit/tools/test_shell/test_shell.h +++ b/webkit/tools/test_shell/test_shell.h @@ -54,6 +54,7 @@ class FilePath; class GURL; class TestNavigationEntry; class TestNavigationController; +class TestNotificationPresenter; class TestShellDevToolsAgent; class TestShellDevToolsClient; class TestWebViewDelegate; @@ -159,6 +160,9 @@ public: EventSendingController* event_sending_controller() { return event_sending_controller_.get(); } + TestNotificationPresenter* notification_presenter() { + return notification_presenter_.get(); + } // Resets the LayoutTestController and EventSendingController. Should be // called before loading a page, since some end-editing event notifications @@ -388,6 +392,7 @@ private: scoped_ptr<PlainTextController> plain_text_controller_; scoped_ptr<TextInputController> text_input_controller_; scoped_ptr<TestNavigationController> navigation_controller_; + scoped_ptr<TestNotificationPresenter> notification_presenter_; scoped_ptr<TestWebViewDelegate> delegate_; scoped_ptr<TestWebViewDelegate> popup_delegate_; @@ -427,4 +432,3 @@ private: }; #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ - |