| 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.
|
|
|