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

Side by Side Diff: components/sync/api/local_change_observer.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « components/sync/api/fake_syncable_service.cc ('k') | components/sync/api/metadata_batch.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_SYNC_API_LOCAL_CHANGE_OBSERVER_H_
6 #define COMPONENTS_SYNC_API_LOCAL_CHANGE_OBSERVER_H_
7
8 namespace syncer {
9
10 class SyncChange;
11 namespace syncable {
12 class Entry;
13 } // namespace syncable
14
15 // Interface for observers that want to be notified of local sync changes.
16 // The OnLocalChange function will be called when a local change made through
17 // ProcessSyncChanges is about to be applied to the directory. This is useful
18 // for inspecting the specifics of sync data being written locally and comparing
19 // it against the current state of the directory. Registering a local change
20 // observer is done by calling the AddLocalChangeObserver function on an
21 // instance of SyncChangeProcessor.
22 class LocalChangeObserver {
23 public:
24 virtual ~LocalChangeObserver() {}
25 // Function called to notify observer of the local change. current_entry
26 // should reflect the state of the entry *before* change is applied.
27 virtual void OnLocalChange(const syncable::Entry* current_entry,
28 const SyncChange& change) = 0;
29 };
30 } // namespace syncer
31
32 #endif // COMPONENTS_SYNC_API_LOCAL_CHANGE_OBSERVER_H_
OLDNEW
« no previous file with comments | « components/sync/api/fake_syncable_service.cc ('k') | components/sync/api/metadata_batch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698