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

Unified Diff: chrome/browser/sync/glue/session_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/session_change_processor.h
diff --git a/chrome/browser/sync/glue/session_change_processor.h b/chrome/browser/sync/glue/session_change_processor.h
index fefdd38ae4abee651442fa9d9fb69b49ded78c9a..17cb936d92ad2d99019f86e973e5bd635b963446 100644
--- a/chrome/browser/sync/glue/session_change_processor.h
+++ b/chrome/browser/sync/glue/session_change_processor.h
@@ -22,7 +22,7 @@ class SessionModelAssociator;
class DataTypeErrorHandler;
// This class is responsible for taking changes from the
-// SessionService and applying them to the csync 'syncable'
+// SessionService and applying them to the sync API 'syncable'
// model, and vice versa. All operations and use of this class are
// from the UI thread.
class SessionChangeProcessor : public ChangeProcessor,
@@ -40,16 +40,16 @@ class SessionChangeProcessor : public ChangeProcessor,
virtual ~SessionChangeProcessor();
// content::NotificationObserver implementation.
- // BrowserSessionProvider -> csync model change application.
+ // BrowserSessionProvider -> sync API model change application.
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
// ChangeProcessor implementation.
- // csync model -> BrowserSessionProvider change application.
+ // sync API model -> BrowserSessionProvider change application.
virtual void ApplyChangesFromSyncModel(
- const csync::BaseTransaction* trans,
- const csync::ImmutableChangeRecordList& changes) OVERRIDE;
+ const syncer::BaseTransaction* trans,
+ const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
protected:
// ChangeProcessor implementation.

Powered by Google App Engine
This is Rietveld 408576698