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

Unified Diff: chrome/browser/sync/syncable/directory_change_delegate.h

Issue 7926001: [Sync] Move change-related methods out of SyncManager::Observer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 9 years, 3 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
« no previous file with comments | « chrome/browser/sync/profile_sync_service.cc ('k') | chrome/browser/sync/syncable/syncable.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/syncable/directory_change_delegate.h
diff --git a/chrome/browser/sync/syncable/directory_change_delegate.h b/chrome/browser/sync/syncable/directory_change_delegate.h
index 284ed72e4ae7ab73fed64424d0776b4154451f3a..99b364fe60fc937576a6aa9770ab1cd88d44daab 100644
--- a/chrome/browser/sync/syncable/directory_change_delegate.h
+++ b/chrome/browser/sync/syncable/directory_change_delegate.h
@@ -24,14 +24,15 @@ namespace syncable {
class DirectoryChangeDelegate {
public:
virtual void HandleCalculateChangesChangeEventFromSyncApi(
- const EntryKernelMutationMap& mutations,
+ const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans) = 0;
virtual void HandleCalculateChangesChangeEventFromSyncer(
- const EntryKernelMutationMap& mutations,
+ const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans) = 0;
// Must return the set of all ModelTypes that were modified in the
// transaction.
virtual ModelTypeBitSet HandleTransactionEndingChangeEvent(
+ const ImmutableWriteTransactionInfo& write_transaction_info,
BaseTransaction* trans) = 0;
virtual void HandleTransactionCompleteChangeEvent(
const ModelTypeBitSet& models_with_changes) = 0;
« no previous file with comments | « chrome/browser/sync/profile_sync_service.cc ('k') | chrome/browser/sync/syncable/syncable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698