Index: chrome/browser/sync/glue/data_type_manager_mock.cc |
=================================================================== |
--- chrome/browser/sync/glue/data_type_manager_mock.cc (revision 91968) |
+++ chrome/browser/sync/glue/data_type_manager_mock.cc (working copy) |
@@ -4,6 +4,7 @@ |
#include "base/tracked.h" |
#include "chrome/browser/sync/glue/data_type_manager_mock.h" |
+#include "chrome/common/chrome_notification_types.h" |
namespace browser_sync { |
@@ -16,9 +17,9 @@ |
ON_CALL(*this, Configure(testing::_, testing::_)). |
WillByDefault(testing::DoAll( |
NotifyFromDataTypeManager(this, |
- NotificationType::SYNC_CONFIGURE_START), |
+ chrome::NOTIFICATION_SYNC_CONFIGURE_START), |
NotifyFromDataTypeManagerWithResult |
- (this, NotificationType::SYNC_CONFIGURE_DONE, &result_))); |
+ (this, chrome::NOTIFICATION_SYNC_CONFIGURE_DONE, &result_))); |
// By default, calling ConfigureWithoutNigori will send a SYNC_CONFIGURE_START |
// and SYNC_CONFIGURE_DONE notification with a DataTypeManager::OK |
@@ -26,9 +27,9 @@ |
ON_CALL(*this, ConfigureWithoutNigori(testing::_, testing::_)). |
WillByDefault(testing::DoAll( |
NotifyFromDataTypeManager(this, |
- NotificationType::SYNC_CONFIGURE_START), |
+ chrome::NOTIFICATION_SYNC_CONFIGURE_START), |
NotifyFromDataTypeManagerWithResult |
- (this, NotificationType::SYNC_CONFIGURE_DONE, &result_))); |
+ (this, chrome::NOTIFICATION_SYNC_CONFIGURE_DONE, &result_))); |
} |
DataTypeManagerMock::~DataTypeManagerMock() {} |