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

Side by Side Diff: ios/chrome/browser/sync/ios_chrome_sync_client.mm

Issue 2395533003: [Sync] Move some things from driver to base. (Closed)
Patch Set: Rebase. Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ios/chrome/browser/sync/ios_chrome_sync_client.h" 5 #include "ios/chrome/browser/sync/ios_chrome_sync_client.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 10 matching lines...) Expand all
21 #include "components/dom_distiller/core/dom_distiller_service.h" 21 #include "components/dom_distiller/core/dom_distiller_service.h"
22 #include "components/history/core/browser/history_model_worker.h" 22 #include "components/history/core/browser/history_model_worker.h"
23 #include "components/history/core/browser/history_service.h" 23 #include "components/history/core/browser/history_service.h"
24 #include "components/invalidation/impl/profile_invalidation_provider.h" 24 #include "components/invalidation/impl/profile_invalidation_provider.h"
25 #include "components/keyed_service/core/service_access_type.h" 25 #include "components/keyed_service/core/service_access_type.h"
26 #include "components/password_manager/core/browser/password_store.h" 26 #include "components/password_manager/core/browser/password_store.h"
27 #include "components/password_manager/sync/browser/password_model_worker.h" 27 #include "components/password_manager/sync/browser/password_model_worker.h"
28 #include "components/search_engines/search_engine_data_type_controller.h" 28 #include "components/search_engines/search_engine_data_type_controller.h"
29 #include "components/signin/core/browser/profile_oauth2_token_service.h" 29 #include "components/signin/core/browser/profile_oauth2_token_service.h"
30 #include "components/sync/base/extensions_activity.h" 30 #include "components/sync/base/extensions_activity.h"
31 #include "components/sync/base/report_unrecoverable_error.h"
31 #include "components/sync/driver/glue/browser_thread_model_worker.h" 32 #include "components/sync/driver/glue/browser_thread_model_worker.h"
32 #include "components/sync/driver/glue/chrome_report_unrecoverable_error.h"
33 #include "components/sync/driver/glue/ui_model_worker.h" 33 #include "components/sync/driver/glue/ui_model_worker.h"
34 #include "components/sync/driver/sync_api_component_factory.h" 34 #include "components/sync/driver/sync_api_component_factory.h"
35 #include "components/sync/driver/sync_util.h" 35 #include "components/sync/driver/sync_util.h"
36 #include "components/sync/driver/ui_data_type_controller.h" 36 #include "components/sync/driver/ui_data_type_controller.h"
37 #include "components/sync/engine/passive_model_worker.h" 37 #include "components/sync/engine/passive_model_worker.h"
38 #include "components/sync_sessions/favicon_cache.h" 38 #include "components/sync_sessions/favicon_cache.h"
39 #include "components/sync_sessions/local_session_event_router.h" 39 #include "components/sync_sessions/local_session_event_router.h"
40 #include "components/sync_sessions/sync_sessions_client.h" 40 #include "components/sync_sessions/sync_sessions_client.h"
41 #include "components/sync_sessions/synced_window_delegates_getter.h" 41 #include "components/sync_sessions/synced_window_delegates_getter.h"
42 #include "components/syncable_prefs/pref_service_syncable.h" 42 #include "components/syncable_prefs/pref_service_syncable.h"
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); 401 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state);
402 if (profile_sync_service != nullptr) { 402 if (profile_sync_service != nullptr) {
403 const syncer::DeviceInfoTracker* tracker = 403 const syncer::DeviceInfoTracker* tracker =
404 profile_sync_service->GetDeviceInfoTracker(); 404 profile_sync_service->GetDeviceInfoTracker();
405 if (tracker != nullptr) { 405 if (tracker != nullptr) {
406 trackers->push_back(tracker); 406 trackers->push_back(tracker);
407 } 407 }
408 } 408 }
409 } 409 }
410 } 410 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/prefs/browser_prefs.mm ('k') | ios/chrome/browser/sync/sync_setup_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698