diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 17:25:41 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 17:25:41 +0000 |
commit | d45f0d9764d93d8f89564a5df7fa505c6a87a6fe (patch) | |
tree | 89ce4ea823cf922e6955dafcfb275459589cef0a /sync/api/fake_syncable_service.h | |
parent | 73e5d26041b0a22e16e383e84a8177930c9fd055 (diff) | |
download | chromium_src-d45f0d9764d93d8f89564a5df7fa505c6a87a6fe.zip chromium_src-d45f0d9764d93d8f89564a5df7fa505c6a87a6fe.tar.gz chromium_src-d45f0d9764d93d8f89564a5df7fa505c6a87a6fe.tar.bz2 |
[Sync] Remove unneeded 'using syncer::' lines and 'syncer::' scopings
Since (almost) everything in sync/ is now in the 'syncer' namespace,
all of these are redundant.
Clean up indentation.
Put sync_{client,listen_notifications} into syncer namespace.
BUG=128060
TEST=
Review URL: https://chromiumcodereview.appspot.com/10795018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147675 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/api/fake_syncable_service.h')
-rw-r--r-- | sync/api/fake_syncable_service.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sync/api/fake_syncable_service.h b/sync/api/fake_syncable_service.h index 483325a..5a501ae 100644 --- a/sync/api/fake_syncable_service.h +++ b/sync/api/fake_syncable_service.h @@ -28,12 +28,12 @@ class FakeSyncableService : public SyncableService { // SyncableService implementation. virtual SyncError MergeDataAndStartSyncing( - syncer::ModelType type, + ModelType type, const SyncDataList& initial_sync_data, scoped_ptr<SyncChangeProcessor> sync_processor, scoped_ptr<SyncErrorFactory> sync_error_factory) OVERRIDE; - virtual void StopSyncing(syncer::ModelType type) OVERRIDE; - virtual SyncDataList GetAllSyncData(syncer::ModelType type) const OVERRIDE; + virtual void StopSyncing(ModelType type) OVERRIDE; + virtual SyncDataList GetAllSyncData(ModelType type) const OVERRIDE; virtual SyncError ProcessSyncChanges( const tracked_objects::Location& from_here, const SyncChangeList& change_list) OVERRIDE; @@ -43,7 +43,7 @@ class FakeSyncableService : public SyncableService { SyncError merge_data_and_start_syncing_error_; SyncError process_sync_changes_error_; bool syncing_; - syncer::ModelType type_; + ModelType type_; }; } // namespace syncer |