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

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

Issue 2514333003: Componentize Reading List (Closed)
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « ios/chrome/browser/sync/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "components/autofill/core/browser/webdata/autocomplete_syncable_service .h" 13 #include "components/autofill/core/browser/webdata/autocomplete_syncable_service .h"
14 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_ser vice.h" 14 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_ser vice.h"
15 #include "components/autofill/core/browser/webdata/autofill_wallet_metadata_sync able_service.h" 15 #include "components/autofill/core/browser/webdata/autofill_wallet_metadata_sync able_service.h"
16 #include "components/autofill/core/browser/webdata/autofill_wallet_syncable_serv ice.h" 16 #include "components/autofill/core/browser/webdata/autofill_wallet_syncable_serv ice.h"
17 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 17 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
18 #include "components/browser_sync/browser_sync_switches.h" 18 #include "components/browser_sync/browser_sync_switches.h"
19 #include "components/browser_sync/profile_sync_components_factory_impl.h" 19 #include "components/browser_sync/profile_sync_components_factory_impl.h"
20 #include "components/browser_sync/profile_sync_service.h" 20 #include "components/browser_sync/profile_sync_service.h"
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/reading_list/reading_list_model.h"
28 #include "components/search_engines/search_engine_data_type_controller.h" 29 #include "components/search_engines/search_engine_data_type_controller.h"
29 #include "components/signin/core/browser/profile_oauth2_token_service.h" 30 #include "components/signin/core/browser/profile_oauth2_token_service.h"
30 #include "components/sync/base/extensions_activity.h" 31 #include "components/sync/base/extensions_activity.h"
31 #include "components/sync/base/report_unrecoverable_error.h" 32 #include "components/sync/base/report_unrecoverable_error.h"
32 #include "components/sync/driver/sync_api_component_factory.h" 33 #include "components/sync/driver/sync_api_component_factory.h"
33 #include "components/sync/driver/sync_util.h" 34 #include "components/sync/driver/sync_util.h"
34 #include "components/sync/driver/ui_data_type_controller.h" 35 #include "components/sync/driver/ui_data_type_controller.h"
35 #include "components/sync/engine/browser_thread_model_worker.h" 36 #include "components/sync/engine/browser_thread_model_worker.h"
36 #include "components/sync/engine/passive_model_worker.h" 37 #include "components/sync/engine/passive_model_worker.h"
37 #include "components/sync/engine/ui_model_worker.h" 38 #include "components/sync/engine/ui_model_worker.h"
38 #include "components/sync_preferences/pref_service_syncable.h" 39 #include "components/sync_preferences/pref_service_syncable.h"
39 #include "components/sync_sessions/favicon_cache.h" 40 #include "components/sync_sessions/favicon_cache.h"
40 #include "components/sync_sessions/local_session_event_router.h" 41 #include "components/sync_sessions/local_session_event_router.h"
41 #include "components/sync_sessions/sync_sessions_client.h" 42 #include "components/sync_sessions/sync_sessions_client.h"
42 #include "components/sync_sessions/synced_window_delegates_getter.h" 43 #include "components/sync_sessions/synced_window_delegates_getter.h"
43 #include "ios/chrome/browser/application_context.h" 44 #include "ios/chrome/browser/application_context.h"
44 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h" 45 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h"
45 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" 46 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h"
46 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 47 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
47 #include "ios/chrome/browser/browser_state/chrome_browser_state_manager.h" 48 #include "ios/chrome/browser/browser_state/chrome_browser_state_manager.h"
48 #include "ios/chrome/browser/chrome_url_constants.h" 49 #include "ios/chrome/browser/chrome_url_constants.h"
49 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h" 50 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h"
50 #include "ios/chrome/browser/favicon/favicon_service_factory.h" 51 #include "ios/chrome/browser/favicon/favicon_service_factory.h"
51 #include "ios/chrome/browser/history/history_service_factory.h" 52 #include "ios/chrome/browser/history/history_service_factory.h"
52 #include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provid er_factory.h" 53 #include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provid er_factory.h"
53 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h" 54 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h"
54 #include "ios/chrome/browser/pref_names.h" 55 #include "ios/chrome/browser/pref_names.h"
55 #include "ios/chrome/browser/reading_list/reading_list_model.h"
56 #include "ios/chrome/browser/reading_list/reading_list_model_factory.h" 56 #include "ios/chrome/browser/reading_list/reading_list_model_factory.h"
57 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" 57 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h"
58 #include "ios/chrome/browser/sync/glue/sync_start_util.h" 58 #include "ios/chrome/browser/sync/glue/sync_start_util.h"
59 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" 59 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h"
60 #include "ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router .h" 60 #include "ios/chrome/browser/sync/sessions/ios_chrome_local_session_event_router .h"
61 #include "ios/chrome/browser/undo/bookmark_undo_service_factory.h" 61 #include "ios/chrome/browser/undo/bookmark_undo_service_factory.h"
62 #include "ios/chrome/browser/web_data_service_factory.h" 62 #include "ios/chrome/browser/web_data_service_factory.h"
63 #include "ios/chrome/common/channel_info.h" 63 #include "ios/chrome/common/channel_info.h"
64 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 64 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
65 #include "ios/web/public/web_thread.h" 65 #include "ios/web/public/web_thread.h"
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); 408 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state);
409 if (profile_sync_service != nullptr) { 409 if (profile_sync_service != nullptr) {
410 const syncer::DeviceInfoTracker* tracker = 410 const syncer::DeviceInfoTracker* tracker =
411 profile_sync_service->GetDeviceInfoTracker(); 411 profile_sync_service->GetDeviceInfoTracker();
412 if (tracker != nullptr) { 412 if (tracker != nullptr) {
413 trackers->push_back(tracker); 413 trackers->push_back(tracker);
414 } 414 }
415 } 415 }
416 } 416 }
417 } 417 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698