| Index: chrome/browser/sync/glue/password_data_type_controller.h
|
| diff --git a/chrome/browser/sync/glue/password_data_type_controller.h b/chrome/browser/sync/glue/password_data_type_controller.h
|
| index f2e14f8b264aa2f0790c823f722ca32da48b7d02..07ecf0b5b06bf999d2e6b94580b7a9e20fcfe241 100644
|
| --- a/chrome/browser/sync/glue/password_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/password_data_type_controller.h
|
| @@ -8,6 +8,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/sync/glue/non_frontend_data_type_controller.h"
|
|
|
| @@ -24,20 +25,20 @@ class PasswordDataTypeController : public NonFrontendDataTypeController {
|
| virtual ~PasswordDataTypeController();
|
|
|
| // NonFrontendDataTypeController implementation
|
| - virtual syncable::ModelType type() const;
|
| - virtual browser_sync::ModelSafeGroup model_safe_group() const;
|
| + virtual syncable::ModelType type() const OVERRIDE;
|
| + virtual browser_sync::ModelSafeGroup model_safe_group() const OVERRIDE;
|
|
|
| protected:
|
| // NonFrontendDataTypeController interface.
|
| - virtual bool StartModels();
|
| - virtual bool StartAssociationAsync();
|
| - virtual void CreateSyncComponents();
|
| - virtual bool StopAssociationAsync();
|
| + virtual bool StartModels() OVERRIDE;
|
| + virtual bool StartAssociationAsync() OVERRIDE;
|
| + virtual void CreateSyncComponents() OVERRIDE;
|
| + virtual bool StopAssociationAsync() OVERRIDE;
|
| virtual void RecordUnrecoverableError(
|
| const tracked_objects::Location& from_here,
|
| - const std::string& message);
|
| - virtual void RecordAssociationTime(base::TimeDelta time);
|
| - virtual void RecordStartFailure(StartResult result);
|
| + const std::string& message) OVERRIDE;
|
| + virtual void RecordAssociationTime(base::TimeDelta time) OVERRIDE;
|
| + virtual void RecordStartFailure(StartResult result) OVERRIDE;
|
|
|
| private:
|
| scoped_refptr<PasswordStore> password_store_;
|
|
|