| 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 b9bd690404905e1fdc3e08ba5ae9cf1fc0b44146..e431751646c4b7f4a6a8cf72629ec4e21d3dad52 100644
|
| --- a/chrome/browser/sync/glue/password_data_type_controller.cc
|
| +++ b/chrome/browser/sync/glue/password_data_type_controller.cc
|
| @@ -32,9 +32,9 @@ syncable::ModelType PasswordDataTypeController::type() const {
|
| return syncable::PASSWORDS;
|
| }
|
|
|
| -csync::ModelSafeGroup PasswordDataTypeController::model_safe_group()
|
| +syncer::ModelSafeGroup PasswordDataTypeController::model_safe_group()
|
| const {
|
| - return csync::GROUP_PASSWORD;
|
| + return syncer::GROUP_PASSWORD;
|
| }
|
|
|
| PasswordDataTypeController::~PasswordDataTypeController() {}
|
| @@ -53,7 +53,7 @@ bool PasswordDataTypeController::StartModels() {
|
| password_store_ = PasswordStoreFactory::GetForProfile(
|
| profile(), Profile::EXPLICIT_ACCESS);
|
| if (!password_store_.get()) {
|
| - csync::SyncError error(
|
| + syncer::SyncError error(
|
| FROM_HERE,
|
| "PasswordStore not initialized, password datatype controller aborting.",
|
| type());
|
|
|