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

Unified Diff: sync/api/syncable_service.h

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights 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
« no previous file with comments | « sync/api/sync_error_unittest.cc ('k') | sync/engine/all_status.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/api/syncable_service.h
diff --git a/sync/api/syncable_service.h b/sync/api/syncable_service.h
index 2093047bcfb752c05c8d1fe63503b1465274052d..c3b2589c2b86abb0f7aa022bd23aa3f5eca53399 100644
--- a/sync/api/syncable_service.h
+++ b/sync/api/syncable_service.h
@@ -38,18 +38,18 @@ class SyncableService : public SyncChangeProcessor,
// encountered, and a filled SyncError (IsSet() == true)
// otherwise.
virtual SyncError MergeDataAndStartSyncing(
- syncable::ModelType type,
+ syncer::ModelType type,
const SyncDataList& initial_sync_data,
scoped_ptr<SyncChangeProcessor> sync_processor,
scoped_ptr<SyncErrorFactory> error_handler) = 0;
// Stop syncing the specified type and reset state.
- virtual void StopSyncing(syncable::ModelType type) = 0;
+ virtual void StopSyncing(syncer::ModelType type) = 0;
// Fills a list of SyncData from the local data. This should create an up
// to date representation of the SyncableService's view of that datatype, and
// should match/be a subset of the server's view of that datatype.
- virtual SyncDataList GetAllSyncData(syncable::ModelType type) const = 0;
+ virtual SyncDataList GetAllSyncData(syncer::ModelType type) const = 0;
// SyncChangeProcessor interface.
// Process a list of new SyncChanges and update the local data as necessary.
« no previous file with comments | « sync/api/sync_error_unittest.cc ('k') | sync/engine/all_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698