summaryrefslogtreecommitdiffstats
path: root/content/test/content_test_suite.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/test/content_test_suite.cc')
-rw-r--r--content/test/content_test_suite.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/test/content_test_suite.cc b/content/test/content_test_suite.cc
index f089ea5..11588c1 100644
--- a/content/test/content_test_suite.cc
+++ b/content/test/content_test_suite.cc
@@ -8,7 +8,7 @@
#include "base/memory/scoped_ptr.h"
#include "content/browser/mock_content_browser_client.h"
#include "content/common/content_paths.h"
-#include "content/common/notification_service.h"
+#include "content/browser/notification_service_impl.h"
#include "content/public/common/content_client.h"
#include "content/test/test_content_client.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -22,7 +22,7 @@ class TestContentClientInitializer : public testing::EmptyTestEventListener {
}
virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
- notification_service_.reset(new NotificationService());
+ notification_service_.reset(new NotificationServiceImpl());
DCHECK(!content::GetContentClient());
content_client_.reset(new TestContentClient);
@@ -43,7 +43,7 @@ class TestContentClientInitializer : public testing::EmptyTestEventListener {
}
private:
- scoped_ptr<NotificationService> notification_service_;
+ scoped_ptr<NotificationServiceImpl> notification_service_;
scoped_ptr<content::ContentClient> content_client_;
scoped_ptr<content::ContentBrowserClient> content_browser_client_;