Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1574)

Unified Diff: chrome/browser/sync/glue/password_data_type_controller.cc

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
« no previous file with comments | « chrome/browser/sync/glue/password_data_type_controller.h ('k') | chrome/browser/sync/glue/password_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698