diff options
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_ - |