| Index: chrome/browser/sync/glue/password_data_type_controller.cc
|
| diff --git a/chrome/browser/sync/glue/password_data_type_controller.cc b/chrome/browser/sync/glue/password_data_type_controller.cc
|
| index a4b43d2778ca4be0698e17560c2a55258accb43b..c48386077ced4614d367446e4d3b5fd85085bb89 100644
|
| --- a/chrome/browser/sync/glue/password_data_type_controller.cc
|
| +++ b/chrome/browser/sync/glue/password_data_type_controller.cc
|
| @@ -73,6 +73,27 @@ void PasswordDataTypeController::Stop() {
|
| NewRunnableMethod(this, &PasswordDataTypeController::StopImpl));
|
| }
|
|
|
| +bool PasswordDataTypeController::enabled() {
|
| + return true;
|
| +}
|
| +
|
| +syncable::ModelType PasswordDataTypeController::type() {
|
| + return syncable::PASSWORDS;
|
| +}
|
| +
|
| +browser_sync::ModelSafeGroup PasswordDataTypeController::model_safe_group() {
|
| + return browser_sync::GROUP_PASSWORD;
|
| +}
|
| +
|
| +const char* PasswordDataTypeController::name() const {
|
| + // For logging only.
|
| + return "password";
|
| +}
|
| +
|
| +DataTypeController::State PasswordDataTypeController::state() {
|
| + return state_;
|
| +}
|
| +
|
| void PasswordDataTypeController::StartImpl() {
|
| // No additional services need to be started before we can proceed
|
| // with model association.
|
|
|