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

Unified Diff: sync/engine/all_status.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/syncable_service.h ('k') | sync/engine/all_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/all_status.h
diff --git a/sync/engine/all_status.h b/sync/engine/all_status.h
index 95efb97d97e43c72ce1becd379a36225edcd5ac2..89c176988f98a511af6e2cbec34e6ee5d41d51e6 100644
--- a/sync/engine/all_status.h
+++ b/sync/engine/all_status.h
@@ -40,7 +40,7 @@ class AllStatus : public SyncEngineEventListener {
virtual void OnSyncEngineEvent(const SyncEngineEvent& event) OVERRIDE;
- syncer::SyncStatus status() const;
+ SyncStatus status() const;
void SetNotificationsEnabled(bool notifications_enabled);
@@ -48,9 +48,9 @@ class AllStatus : public SyncEngineEventListener {
void IncrementNotificationsReceived();
- void SetThrottledTypes(const syncer::ModelTypeSet &types);
+ void SetThrottledTypes(const ModelTypeSet &types);
- void SetEncryptedTypes(syncer::ModelTypeSet types);
+ void SetEncryptedTypes(ModelTypeSet types);
void SetCryptographerReady(bool ready);
void SetCryptoHasPendingKeys(bool has_pending_keys);
@@ -59,10 +59,10 @@ class AllStatus : public SyncEngineEventListener {
protected:
// Examines syncer to calculate syncing and the unsynced count,
// and returns a Status with new values.
- syncer::SyncStatus CalcSyncing(const SyncEngineEvent& event) const;
- syncer::SyncStatus CreateBlankStatus() const;
+ SyncStatus CalcSyncing(const SyncEngineEvent& event) const;
+ SyncStatus CreateBlankStatus() const;
- syncer::SyncStatus status_;
+ SyncStatus status_;
mutable base::Lock mutex_; // Protects all data members.
DISALLOW_COPY_AND_ASSIGN(AllStatus);
« no previous file with comments | « sync/api/syncable_service.h ('k') | sync/engine/all_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698