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

Unified Diff: sync/internal_api/internal_components_factory_impl.cc

Issue 10804039: Make SyncBackendRegistrar aware of loaded data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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/debug_info_event_listener.cc ('k') | sync/internal_api/js_sync_manager_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/internal_components_factory_impl.cc
diff --git a/sync/internal_api/internal_components_factory_impl.cc b/sync/internal_api/internal_components_factory_impl.cc
index d62d942d92969314ab130516bead10fd19724af6..062ee0bcd22f7404921c5f38a16782ed0bc3a8d1 100644
--- a/sync/internal_api/internal_components_factory_impl.cc
+++ b/sync/internal_api/internal_components_factory_impl.cc
@@ -24,7 +24,6 @@ scoped_ptr<sessions::SyncSessionContext>
InternalComponentsFactoryImpl::BuildContext(
ServerConnectionManager* connection_manager,
syncable::Directory* directory,
- const ModelSafeRoutingInfo& routing_info,
const std::vector<ModelSafeWorker*> workers,
ExtensionsActivityMonitor* monitor,
ThrottledDataTypeTracker* throttled_data_type_tracker,
@@ -32,9 +31,10 @@ InternalComponentsFactoryImpl::BuildContext(
sessions::DebugInfoGetter* debug_info_getter,
TrafficRecorder* traffic_recorder) {
return scoped_ptr<sessions::SyncSessionContext>(
- new sessions::SyncSessionContext(connection_manager, directory,
- routing_info, workers, monitor, throttled_data_type_tracker,
- listeners, debug_info_getter, traffic_recorder));
+ new sessions::SyncSessionContext(
+ connection_manager, directory, workers, monitor,
+ throttled_data_type_tracker, listeners, debug_info_getter,
+ traffic_recorder));
}
scoped_ptr<syncable::DirectoryBackingStore>
« no previous file with comments | « sync/internal_api/debug_info_event_listener.cc ('k') | sync/internal_api/js_sync_manager_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698