| Index: chrome/browser/search_engines/template_url_service_test_util.cc
|
| ===================================================================
|
| --- chrome/browser/search_engines/template_url_service_test_util.cc (revision 106380)
|
| +++ chrome/browser/search_engines/template_url_service_test_util.cc (working copy)
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/browser/search_engines/template_url_service_factory.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| -#include "content/common/notification_service.h"
|
| +#include "content/public/browser/notification_service.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace {
|
| @@ -227,10 +227,10 @@
|
| void TemplateURLServiceTestUtil::SetGoogleBaseURL(
|
| const std::string& base_url) const {
|
| TemplateURLRef::SetGoogleBaseURL(new std::string(base_url));
|
| - NotificationService::current()->Notify(
|
| + content::NotificationService::current()->Notify(
|
| chrome::NOTIFICATION_GOOGLE_URL_UPDATED,
|
| - NotificationService::AllSources(),
|
| - NotificationService::NoDetails());
|
| + content::NotificationService::AllSources(),
|
| + content::NotificationService::NoDetails());
|
| }
|
|
|
| WebDataService* TemplateURLServiceTestUtil::GetWebDataService() {
|
|
|