Index: webkit/tools/test_shell/test_shell.cc |
=================================================================== |
--- webkit/tools/test_shell/test_shell.cc (revision 44496) |
+++ webkit/tools/test_shell/test_shell.cc (working copy) |
@@ -46,6 +46,7 @@ |
#include "webkit/glue/webkit_glue.h" |
#include "webkit/glue/webpreferences.h" |
#include "webkit/tools/test_shell/accessibility_controller.h" |
+#include "webkit/tools/test_shell/notification_presenter.h" |
#include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
#include "webkit/tools/test_shell/test_navigation_controller.h" |
#include "webkit/tools/test_shell/test_shell_devtools_agent.h" |
@@ -134,6 +135,7 @@ |
plain_text_controller_.reset(new PlainTextController(this)); |
text_input_controller_.reset(new TextInputController(this)); |
navigation_controller_.reset(new TestNavigationController(this)); |
+ notification_presenter_.reset(new TestNotificationPresenter(this)); |
URLRequestFilter* filter = URLRequestFilter::GetInstance(); |
filter->AddHostnameHandler("test-shell-resource", "inspector", |
@@ -623,6 +625,7 @@ |
accessibility_controller_->Reset(); |
layout_test_controller_->Reset(); |
event_sending_controller_->Reset(); |
+ notification_presenter_->Reset(); |
delegate_->Reset(); |
} |