Index: chrome/browser/sync/glue/data_type_manager_mock.cc |
diff --git a/chrome/browser/sync/glue/data_type_manager_mock.cc b/chrome/browser/sync/glue/data_type_manager_mock.cc |
index 9c420b059725e1cb42ceafd9c3d2f24adc3ebda3..d0c155a3239537dc308f0fe68c6df8ccaab211a2 100644 |
--- a/chrome/browser/sync/glue/data_type_manager_mock.cc |
+++ b/chrome/browser/sync/glue/data_type_manager_mock.cc |
@@ -10,31 +10,6 @@ namespace browser_sync { |
DataTypeManagerMock::DataTypeManagerMock() |
: result_(OK, syncer::ModelTypeSet()) { |
- |
- // By default, calling Configure will send a SYNC_CONFIGURE_START |
- // and SYNC_CONFIGURE_DONE notification with a DataTypeManager::OK |
- // detail. |
- ON_CALL(*this, Configure(testing::_, testing::_)). |
- WillByDefault(testing::DoAll( |
- NotifyFromDataTypeManager( |
- this, |
- static_cast<int>(chrome::NOTIFICATION_SYNC_CONFIGURE_START)), |
- NotifyFromDataTypeManagerWithResult( |
- this, static_cast<int>(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 |
- // detail. |
- ON_CALL(*this, ConfigureWithoutNigori(testing::_, testing::_)). |
- WillByDefault(testing::DoAll( |
- NotifyFromDataTypeManager( |
- this, |
- static_cast<int>(chrome::NOTIFICATION_SYNC_CONFIGURE_START)), |
- NotifyFromDataTypeManagerWithResult( |
- this, |
- static_cast<int>(chrome::NOTIFICATION_SYNC_CONFIGURE_DONE), |
- &result_))); |
} |
DataTypeManagerMock::~DataTypeManagerMock() {} |