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

Side by Side Diff: components/browser_sync/browser/profile_sync_components_factory_impl.cc

Issue 1662843002: Revert of Delete base/prefs and update callers to use components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "components/browser_sync/browser/profile_sync_components_factory_impl.h " 5 #include "components/browser_sync/browser/profile_sync_components_factory_impl.h "
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/prefs/pref_service.h"
11 #include "build/build_config.h" 12 #include "build/build_config.h"
12 #include "components/autofill/core/browser/autofill_wallet_data_type_controller. h" 13 #include "components/autofill/core/browser/autofill_wallet_data_type_controller. h"
13 #include "components/autofill/core/browser/webdata/autofill_data_type_controller .h" 14 #include "components/autofill/core/browser/webdata/autofill_data_type_controller .h"
14 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co ntroller.h" 15 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co ntroller.h"
15 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 16 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
16 #include "components/autofill/core/common/autofill_pref_names.h" 17 #include "components/autofill/core/common/autofill_pref_names.h"
17 #include "components/autofill/core/common/autofill_switches.h" 18 #include "components/autofill/core/common/autofill_switches.h"
18 #include "components/browser_sync/browser/profile_sync_service.h" 19 #include "components/browser_sync/browser/profile_sync_service.h"
19 #include "components/browser_sync/common/browser_sync_switches.h" 20 #include "components/browser_sync/common/browser_sync_switches.h"
20 #include "components/dom_distiller/core/dom_distiller_features.h" 21 #include "components/dom_distiller/core/dom_distiller_features.h"
21 #include "components/history/core/browser/history_delete_directives_data_type_co ntroller.h" 22 #include "components/history/core/browser/history_delete_directives_data_type_co ntroller.h"
22 #include "components/history/core/browser/typed_url_data_type_controller.h" 23 #include "components/history/core/browser/typed_url_data_type_controller.h"
23 #include "components/password_manager/core/browser/password_store.h" 24 #include "components/password_manager/core/browser/password_store.h"
24 #include "components/password_manager/sync/browser/password_data_type_controller .h" 25 #include "components/password_manager/sync/browser/password_data_type_controller .h"
25 #include "components/prefs/pref_service.h"
26 #include "components/sync_bookmarks/bookmark_change_processor.h" 26 #include "components/sync_bookmarks/bookmark_change_processor.h"
27 #include "components/sync_bookmarks/bookmark_data_type_controller.h" 27 #include "components/sync_bookmarks/bookmark_data_type_controller.h"
28 #include "components/sync_bookmarks/bookmark_model_associator.h" 28 #include "components/sync_bookmarks/bookmark_model_associator.h"
29 #include "components/sync_driver/data_type_manager_impl.h" 29 #include "components/sync_driver/data_type_manager_impl.h"
30 #include "components/sync_driver/device_info_data_type_controller.h" 30 #include "components/sync_driver/device_info_data_type_controller.h"
31 #include "components/sync_driver/glue/chrome_report_unrecoverable_error.h" 31 #include "components/sync_driver/glue/chrome_report_unrecoverable_error.h"
32 #include "components/sync_driver/glue/sync_backend_host.h" 32 #include "components/sync_driver/glue/sync_backend_host.h"
33 #include "components/sync_driver/glue/sync_backend_host_impl.h" 33 #include "components/sync_driver/glue/sync_backend_host_impl.h"
34 #include "components/sync_driver/local_device_info_provider_impl.h" 34 #include "components/sync_driver/local_device_info_provider_impl.h"
35 #include "components/sync_driver/proxy_data_type_controller.h" 35 #include "components/sync_driver/proxy_data_type_controller.h"
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 #else 373 #else
374 const bool kExpectMobileBookmarksFolder = false; 374 const bool kExpectMobileBookmarksFolder = false;
375 #endif 375 #endif
376 BookmarkModelAssociator* model_associator = new BookmarkModelAssociator( 376 BookmarkModelAssociator* model_associator = new BookmarkModelAssociator(
377 bookmark_model, sync_service->GetSyncClient(), user_share, error_handler, 377 bookmark_model, sync_service->GetSyncClient(), user_share, error_handler,
378 kExpectMobileBookmarksFolder); 378 kExpectMobileBookmarksFolder);
379 BookmarkChangeProcessor* change_processor = new BookmarkChangeProcessor( 379 BookmarkChangeProcessor* change_processor = new BookmarkChangeProcessor(
380 sync_service->GetSyncClient(), model_associator, error_handler); 380 sync_service->GetSyncClient(), model_associator, error_handler);
381 return SyncComponents(model_associator, change_processor); 381 return SyncComponents(model_associator, change_processor);
382 } 382 }
OLDNEW
« no previous file with comments | « components/browser_sync/browser/DEPS ('k') | components/browser_sync/browser/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698