| 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 910eba92ac478b27be0aefef8ee3499b310613ac..56fb55bdcf95793bae58106991135e4d447be601 100644
|
| --- a/chrome/browser/sync/glue/password_data_type_controller.h
|
| +++ b/chrome/browser/sync/glue/password_data_type_controller.h
|
| @@ -38,26 +38,15 @@ class PasswordDataTypeController : public DataTypeController {
|
|
|
| virtual void Stop();
|
|
|
| - virtual bool enabled() {
|
| - return true;
|
| - }
|
| + virtual bool enabled();
|
|
|
| - virtual syncable::ModelType type() {
|
| - return syncable::PASSWORDS;
|
| - }
|
| + virtual syncable::ModelType type();
|
|
|
| - virtual browser_sync::ModelSafeGroup model_safe_group() {
|
| - return browser_sync::GROUP_PASSWORD;
|
| - }
|
| + virtual browser_sync::ModelSafeGroup model_safe_group();
|
|
|
| - virtual const char* name() const {
|
| - // For logging only.
|
| - return "password";
|
| - }
|
| + virtual const char* name() const;
|
|
|
| - virtual State state() {
|
| - return state_;
|
| - }
|
| + virtual State state();
|
|
|
| // UnrecoverableHandler implementation
|
| virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
|
|
|