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

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

Issue 7655055: [Sync] Make BackendMigrator not wait for full sync cycles (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac test Created 9 years, 4 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_registrar.h
diff --git a/chrome/browser/sync/glue/sync_backend_registrar.h b/chrome/browser/sync/glue/sync_backend_registrar.h
index 56e02a9e127401e38d91d1b2a1ac3ecf89009e0d..2fad3cd442f479fb87c2677ee500b03f98516261 100644
--- a/chrome/browser/sync/glue/sync_backend_registrar.h
+++ b/chrome/browser/sync/glue/sync_backend_registrar.h
@@ -36,6 +36,7 @@ class SyncBackendRegistrar : public ModelSafeWorkerRegistrar {
// (initially put in the passive group). Does not take ownership of
// |profile| or |sync_loop|. Must be created on the UI thread.
SyncBackendRegistrar(const syncable::ModelTypeSet& initial_types,
+ const std::string& name,
tim (not reviewing) 2011/08/31 23:18:02 Name of what?
akalin 2011/09/01 01:38:40 Added comments.
Profile* profile,
MessageLoop* sync_loop);
@@ -108,6 +109,8 @@ class SyncBackendRegistrar : public ModelSafeWorkerRegistrar {
bool IsCurrentThreadSafeForModel(
syncable::ModelType model_type) const;
+ const std::string name_;
+
Profile* const profile_;
MessageLoop* const sync_loop_;

Powered by Google App Engine
This is Rietveld 408576698