| Index: chrome/browser/sync/glue/app_notification_data_type_controller_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/app_notification_data_type_controller_unittest.cc b/chrome/browser/sync/glue/app_notification_data_type_controller_unittest.cc
|
| index 807348fac5ac5d010e38ffa20c11db818580cad2..18bbbf50bd825a441abe43ad5d125cb1b00c8e36 100644
|
| --- a/chrome/browser/sync/glue/app_notification_data_type_controller_unittest.cc
|
| +++ b/chrome/browser/sync/glue/app_notification_data_type_controller_unittest.cc
|
| @@ -158,7 +158,7 @@ class SyncAppNotificationDataTypeControllerTest
|
| 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_;
|
| };
|
| @@ -218,7 +218,7 @@ TEST_F(SyncAppNotificationDataTypeControllerTest, StartAssociationFailed) {
|
| EXPECT_CALL(start_callback_,
|
| Run(DataTypeController::ASSOCIATION_FAILED, _));
|
| syncable_service_.set_merge_data_and_start_syncing_error(
|
| - SyncError(FROM_HERE, "Error", syncable::APP_NOTIFICATIONS));
|
| + csync::SyncError(FROM_HERE, "Error", syncable::APP_NOTIFICATIONS));
|
|
|
| Start();
|
| EXPECT_EQ(DataTypeController::DISABLED, app_notif_dtc_->state());
|
|
|