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

Unified Diff: sync/api/syncable_service.h

Issue 10795018: [Sync] Remove unneeded 'using syncer::' lines and 'syncer::' scopings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fiix indent Created 8 years, 5 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 6118a9196a81235f8122780314768ef5d519b2a0..5f84d852f8feef3f6710d60f1ed481011a5b87b2 100644
--- a/sync/api/syncable_service.h
+++ b/sync/api/syncable_service.h
@@ -37,18 +37,18 @@ class SyncableService : public SyncChangeProcessor,
// encountered, and a filled SyncError (IsSet() == true)
// otherwise.
virtual SyncError MergeDataAndStartSyncing(
- syncer::ModelType type,
+ 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(syncer::ModelType type) = 0;
+ virtual void StopSyncing(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(syncer::ModelType type) const = 0;
+ virtual SyncDataList GetAllSyncData(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