| Index: chrome/browser/sync/glue/search_engine_data_type_controller_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/search_engine_data_type_controller_unittest.cc b/chrome/browser/sync/glue/search_engine_data_type_controller_unittest.cc
|
| index 1c409c99d7eedc17a214077de24595b558c108e7..ced562a001a7b58b9bd8b164b623536d540c4dd7 100644
|
| --- a/chrome/browser/sync/glue/search_engine_data_type_controller_unittest.cc
|
| +++ b/chrome/browser/sync/glue/search_engine_data_type_controller_unittest.cc
|
| @@ -103,7 +103,7 @@ class SyncSearchEngineDataTypeControllerTest : public testing::Test {
|
| scoped_ptr<ProfileSyncComponentsFactoryMock> profile_sync_factory_;
|
| ProfileSyncServiceMock service_;
|
| scoped_ptr<FakeGenericChangeProcessor> change_processor_;
|
| - FakeSyncableService syncable_service_;
|
| + csync::FakeSyncableService syncable_service_;
|
| StartCallbackMock start_callback_;
|
| ModelLoadCallbackMock model_load_callback_;
|
| };
|
| @@ -161,7 +161,7 @@ TEST_F(SyncSearchEngineDataTypeControllerTest, StartAssociationFailed) {
|
| EXPECT_CALL(start_callback_,
|
| Run(DataTypeController::ASSOCIATION_FAILED, _));
|
| syncable_service_.set_merge_data_and_start_syncing_error(
|
| - SyncError(FROM_HERE, "Error", syncable::SEARCH_ENGINES));
|
| + csync::SyncError(FROM_HERE, "Error", syncable::SEARCH_ENGINES));
|
|
|
| Start();
|
| EXPECT_EQ(DataTypeController::DISABLED, search_engine_dtc_->state());
|
|
|