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

Unified Diff: chrome/browser/sync/glue/sync_backend_host_impl.h

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile and chrome/ usage Created 6 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
Index: chrome/browser/sync/glue/sync_backend_host_impl.h
diff --git a/chrome/browser/sync/glue/sync_backend_host_impl.h b/chrome/browser/sync/glue/sync_backend_host_impl.h
index 629722ae653a1e73398f4743ea97c9ab0cc4af8c..09847d1573e81ea70060cc026236d162c2ab9fe0 100644
--- a/chrome/browser/sync/glue/sync_backend_host_impl.h
+++ b/chrome/browser/sync/glue/sync_backend_host_impl.h
@@ -81,7 +81,7 @@ class SyncBackendHostImpl
// SyncBackendHost implementation.
virtual void Initialize(
- SyncFrontend* frontend,
+ sync_driver::SyncFrontend* frontend,
scoped_ptr<base::Thread> sync_thread,
const syncer::WeakHandle<syncer::JsEventHandler>& event_handler,
const GURL& service_url,
@@ -111,7 +111,7 @@ class SyncBackendHostImpl
const base::Callback<void()>& retry_callback) OVERRIDE;
virtual void ActivateDataType(
syncer::ModelType type, syncer::ModelSafeGroup group,
- ChangeProcessor* change_processor) OVERRIDE;
+ sync_driver::ChangeProcessor* change_processor) OVERRIDE;
virtual void DeactivateDataType(syncer::ModelType type) OVERRIDE;
virtual void EnableEncryptEverything() OVERRIDE;
virtual syncer::UserShare* GetUserShare() const OVERRIDE;
@@ -209,7 +209,7 @@ class SyncBackendHostImpl
syncer::ModelType type,
const syncer::StatusCounters& counters);
- SyncFrontend* frontend() { return frontend_; }
+ sync_driver::SyncFrontend* frontend() { return frontend_; }
private:
friend class SyncBackendHostCore;
@@ -335,7 +335,7 @@ class SyncBackendHostImpl
scoped_ptr<SyncBackendRegistrar> registrar_;
// The frontend which we serve (and are owned by).
- SyncFrontend* frontend_;
+ sync_driver::SyncFrontend* frontend_;
// We cache the cryptographer's pending keys whenever NotifyPassphraseRequired
// is called. This way, before the UI calls SetDecryptionPassphrase on the

Powered by Google App Engine
This is Rietveld 408576698