| Index: chrome/browser/sync/glue/autofill_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/autofill_data_type_controller.h b/chrome/browser/sync/glue/autofill_data_type_controller.h
|
| index f96e149fa9d135bb7bb34e2df2db994ed66271c1..f8f8b59f9512f11dc52e6ccee985a81d3ee5c7a7 100644
|
| --- a/chrome/browser/sync/glue/autofill_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/autofill_data_type_controller.h
|
| @@ -30,21 +30,20 @@ class AutofillDataTypeController
|
| Profile* profile);
|
|
|
| // NonUIDataTypeController implementation.
|
| - virtual syncer::ModelType type() const override;
|
| - virtual syncer::ModelSafeGroup model_safe_group() const override;
|
| + syncer::ModelType type() const override;
|
| + syncer::ModelSafeGroup model_safe_group() const override;
|
|
|
| // NonFrontendDatatypeController override, needed as stop-gap until bug
|
| // 163431 is addressed / implemented.
|
| - virtual void StartAssociating(const StartCallback& start_callback) override;
|
| + void StartAssociating(const StartCallback& start_callback) override;
|
|
|
| protected:
|
| - virtual ~AutofillDataTypeController();
|
| + ~AutofillDataTypeController() override;
|
|
|
| // NonUIDataTypeController implementation.
|
| - virtual bool PostTaskOnBackendThread(
|
| - const tracked_objects::Location& from_here,
|
| - const base::Closure& task) override;
|
| - virtual bool StartModels() override;
|
| + bool PostTaskOnBackendThread(const tracked_objects::Location& from_here,
|
| + const base::Closure& task) override;
|
| + bool StartModels() override;
|
|
|
| private:
|
| friend class AutofillDataTypeControllerTest;
|
|
|