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

Unified Diff: sync/internal_api/debug_info_event_listener.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/internal_api/change_reorder_buffer.cc ('k') | sync/internal_api/debug_info_event_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/debug_info_event_listener.h
diff --git a/sync/internal_api/debug_info_event_listener.h b/sync/internal_api/debug_info_event_listener.h
index 403c18218a3ec0ffef09217b74fc144367353307..8606cf90c3778525890eb547cc3edbc3457687d7 100644
--- a/sync/internal_api/debug_info_event_listener.h
+++ b/sync/internal_api/debug_info_event_listener.h
@@ -23,22 +23,22 @@ const unsigned int kMaxEntries = 6;
// Listens to events and records them in a queue. And passes the events to
// syncer when requested.
-class DebugInfoEventListener : public syncer::SyncManager::Observer,
- public syncer::sessions::DebugInfoGetter {
+class DebugInfoEventListener : public SyncManager::Observer,
+ public sessions::DebugInfoGetter {
public:
DebugInfoEventListener();
virtual ~DebugInfoEventListener();
// SyncManager::Observer implementation.
virtual void OnSyncCycleCompleted(
- const syncer::sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
+ const sessions::SyncSessionSnapshot& snapshot) OVERRIDE;
virtual void OnInitializationComplete(
- const syncer::WeakHandle<syncer::JsBackend>& js_backend,
+ const WeakHandle<JsBackend>& js_backend,
bool success) OVERRIDE;
virtual void OnConnectionStatusChange(
- syncer::ConnectionStatus connection_status) OVERRIDE;
+ ConnectionStatus connection_status) OVERRIDE;
virtual void OnPassphraseRequired(
- syncer::PassphraseRequiredReason reason,
+ PassphraseRequiredReason reason,
const sync_pb::EncryptedData& pending_keys) OVERRIDE;
virtual void OnPassphraseAccepted() OVERRIDE;
virtual void OnBootstrapTokenUpdated(
@@ -46,16 +46,15 @@ class DebugInfoEventListener : public syncer::SyncManager::Observer,
virtual void OnStopSyncingPermanently() OVERRIDE;
virtual void OnUpdatedToken(const std::string& token) OVERRIDE;
virtual void OnEncryptedTypesChanged(
- syncer::ModelTypeSet encrypted_types,
+ ModelTypeSet encrypted_types,
bool encrypt_everything) OVERRIDE;
virtual void OnEncryptionComplete() OVERRIDE;
virtual void OnActionableError(
- const syncer::SyncProtocolError& sync_error) OVERRIDE;
+ const SyncProtocolError& sync_error) OVERRIDE;
// Sync manager events.
- void OnNudgeFromDatatype(syncer::ModelType datatype);
- void OnIncomingNotification(
- const syncer::ModelTypePayloadMap& type_payloads);
+ void OnNudgeFromDatatype(ModelType datatype);
+ void OnIncomingNotification(const ModelTypePayloadMap& type_payloads);
// DebugInfoGetter Implementation.
virtual void GetAndClearDebugInfo(sync_pb::DebugInfo* debug_info) OVERRIDE;
« no previous file with comments | « sync/internal_api/change_reorder_buffer.cc ('k') | sync/internal_api/debug_info_event_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698