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

Unified Diff: chrome/browser/sync/glue/password_change_processor.h

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_change_processor.h
diff --git a/chrome/browser/sync/glue/password_change_processor.h b/chrome/browser/sync/glue/password_change_processor.h
index f631236d6896848af866afbf61c62a7f76501cf2..06eb72c43594e379144d8740ba3ff643c8a479a1 100644
--- a/chrome/browser/sync/glue/password_change_processor.h
+++ b/chrome/browser/sync/glue/password_change_processor.h
@@ -25,7 +25,7 @@ namespace browser_sync {
class DataTypeErrorHandler;
// This class is responsible for taking changes from the password backend and
-// applying them to the csync 'syncable' model, and vice versa. All
+// applying them to the sync API 'syncable' model, and vice versa. All
// operations and use of this class are from the DB thread on Windows and Linux,
// or the password thread on Mac.
class PasswordChangeProcessor : public ChangeProcessor,
@@ -37,18 +37,18 @@ class PasswordChangeProcessor : public ChangeProcessor,
virtual ~PasswordChangeProcessor();
// content::NotificationObserver implementation.
- // Passwords -> csync model change application.
+ // Passwords -> sync API model change application.
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
- // csync model -> WebDataService change application.
+ // sync API model -> WebDataService change application.
virtual void ApplyChangesFromSyncModel(
- const csync::BaseTransaction* trans,
- const csync::ImmutableChangeRecordList& changes) OVERRIDE;
+ const syncer::BaseTransaction* trans,
+ const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
// Commit changes buffered during ApplyChanges. We must commit them to the
- // password store only after the csync transaction is released, else there
+ // password store only after the sync API transaction is released, else there
// is risk of deadlock due to the password store posting tasks to the UI
// thread (http://crbug.com/70658).
virtual void CommitChangesFromSyncModel() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698