| Index: chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc b/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
|
| index 2035f9dc63c747088c0ec648d584da00ed1127cd..a383e14920a062c26bdcfb53de66038ce50718c5 100644
|
| --- a/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
|
| +++ b/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
|
| @@ -97,7 +97,7 @@ class NonFrontendDataTypeControllerFake : public NonFrontendDataTypeController {
|
| mock_->RecordAssociationTime(time);
|
| }
|
| virtual void RecordStartFailure(
|
| - DataTypeController::StartResult result) OVERRIDE {
|
| + DataTypeController::ConfigureResult result) OVERRIDE {
|
| mock_->RecordStartFailure(result);
|
| }
|
| virtual void DisconnectProcessor(
|
| @@ -160,7 +160,7 @@ class SyncNonFrontendDataTypeControllerTest : public testing::Test {
|
| EXPECT_CALL(*dtc_mock_.get(), RecordAssociationTime(_));
|
| }
|
|
|
| - void SetActivateExpectations(DataTypeController::StartResult result) {
|
| + void SetActivateExpectations(DataTypeController::ConfigureResult result) {
|
| EXPECT_CALL(start_callback_, Run(result, _, _));
|
| }
|
|
|
| @@ -171,7 +171,7 @@ class SyncNonFrontendDataTypeControllerTest : public testing::Test {
|
| WillOnce(Return(syncer::SyncError()));
|
| }
|
|
|
| - void SetStartFailExpectations(DataTypeController::StartResult result) {
|
| + void SetStartFailExpectations(DataTypeController::ConfigureResult result) {
|
| if (DataTypeController::IsUnrecoverableResult(result))
|
| EXPECT_CALL(*dtc_mock_.get(), RecordUnrecoverableError(_, _));
|
| if (model_associator_) {
|
|
|