| Index: chrome/browser/sync/glue/fake_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/fake_data_type_controller.h b/chrome/browser/sync/glue/fake_data_type_controller.h
|
| index 173e9f9e269e4e255db9599423f5a745bd4df422..f541dad4f802d00b175269fb4d013b563d75d8c6 100644
|
| --- a/chrome/browser/sync/glue/fake_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/fake_data_type_controller.h
|
| @@ -21,7 +21,7 @@ namespace browser_sync {
|
| // functionality.)
|
| class FakeDataTypeController : public DataTypeController {
|
| public:
|
| - explicit FakeDataTypeController(syncable::ModelType type);
|
| + explicit FakeDataTypeController(syncer::ModelType type);
|
|
|
| virtual void LoadModels(
|
| const ModelLoadCallback& model_load_callback) OVERRIDE;
|
| @@ -34,7 +34,7 @@ class FakeDataTypeController : public DataTypeController {
|
|
|
| virtual void Stop() OVERRIDE;
|
|
|
| - virtual syncable::ModelType type() const OVERRIDE;
|
| + virtual syncer::ModelType type() const OVERRIDE;
|
|
|
| virtual std::string name() const OVERRIDE;
|
|
|
| @@ -60,7 +60,7 @@ class FakeDataTypeController : public DataTypeController {
|
| private:
|
| DataTypeController::State state_;
|
| bool model_load_delayed_;
|
| - syncable::ModelType type_;
|
| + syncer::ModelType type_;
|
| StartCallback last_start_callback_;
|
| ModelLoadCallback model_load_callback_;
|
| };
|
|
|