Index: chrome/browser/sync/glue/data_type_manager_mock.h |
=================================================================== |
--- chrome/browser/sync/glue/data_type_manager_mock.h (revision 106380) |
+++ chrome/browser/sync/glue/data_type_manager_mock.h (working copy) |
@@ -9,7 +9,7 @@ |
#include "chrome/browser/sync/api/sync_error.h" |
#include "chrome/browser/sync/glue/data_type_manager.h" |
#include "chrome/browser/sync/profile_sync_test_util.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_details.h" |
#include "content/public/browser/notification_types.h" |
#include "testing/gmock/include/gmock/gmock.h" |
@@ -35,7 +35,7 @@ |
} |
ACTION_P3(NotifyFromDataTypeManagerWithResult, dtm, type, result) { |
- NotificationService::current()->Notify( |
+ content::NotificationService::current()->Notify( |
type, |
content::Source<browser_sync::DataTypeManager>(dtm), |
content::Details<const browser_sync::DataTypeManager::ConfigureResult>( |
@@ -43,9 +43,9 @@ |
} |
ACTION_P2(NotifyFromDataTypeManager, dtm, type) { |
- NotificationService::current()->Notify(type, |
+ content::NotificationService::current()->Notify(type, |
content::Source<browser_sync::DataTypeManager>(dtm), |
- NotificationService::NoDetails()); |
+ content::NotificationService::NoDetails()); |
} |
namespace browser_sync { |