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

Unified Diff: sync/api/fake_syncable_service.cc

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/fake_syncable_service.h ('k') | sync/api/sync_change.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/api/fake_syncable_service.cc
diff --git a/sync/api/fake_syncable_service.cc b/sync/api/fake_syncable_service.cc
index 078201bafbd90926aa9028c4a87f3e04b8d905c4..731b24d64480017a4f4d603c2773f7211cfc27c1 100644
--- a/sync/api/fake_syncable_service.cc
+++ b/sync/api/fake_syncable_service.cc
@@ -11,7 +11,7 @@ namespace syncer {
FakeSyncableService::FakeSyncableService()
: syncing_(false),
- type_(syncer::UNSPECIFIED) {}
+ type_(UNSPECIFIED) {}
FakeSyncableService::~FakeSyncableService() {}
@@ -31,7 +31,7 @@ bool FakeSyncableService::syncing() const {
// SyncableService implementation.
SyncError FakeSyncableService::MergeDataAndStartSyncing(
- syncer::ModelType type,
+ ModelType type,
const SyncDataList& initial_sync_data,
scoped_ptr<SyncChangeProcessor> sync_processor,
scoped_ptr<SyncErrorFactory> sync_error_factory) {
@@ -43,13 +43,12 @@ SyncError FakeSyncableService::MergeDataAndStartSyncing(
return merge_data_and_start_syncing_error_;
}
-void FakeSyncableService::StopSyncing(syncer::ModelType type) {
+void FakeSyncableService::StopSyncing(ModelType type) {
syncing_ = false;
sync_processor_.reset();
}
-SyncDataList FakeSyncableService::GetAllSyncData(
- syncer::ModelType type) const {
+SyncDataList FakeSyncableService::GetAllSyncData(ModelType type) const {
return SyncDataList();
}
« no previous file with comments | « sync/api/fake_syncable_service.h ('k') | sync/api/sync_change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698