| OLD | NEW |
| 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 "chrome/browser/sync/profile_sync_components_factory_impl.h" | 5 #include "chrome/browser/sync/profile_sync_components_factory_impl.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 11 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/search_engines/template_url_service_factory.h" | 13 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 14 #include "chrome/browser/sync/glue/theme_data_type_controller.h" | 14 #include "chrome/browser/sync/glue/theme_data_type_controller.h" |
| 15 #include "chrome/browser/sync/profile_sync_service.h" | |
| 16 #include "chrome/common/channel_info.h" | 15 #include "chrome/common/channel_info.h" |
| 17 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
| 18 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
| 19 #include "components/autofill/core/browser/autofill_wallet_data_type_controller.
h" | 18 #include "components/autofill/core/browser/autofill_wallet_data_type_controller.
h" |
| 20 #include "components/autofill/core/browser/webdata/autofill_data_type_controller
.h" | 19 #include "components/autofill/core/browser/webdata/autofill_data_type_controller
.h" |
| 21 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co
ntroller.h" | 20 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co
ntroller.h" |
| 22 #include "components/autofill/core/common/autofill_pref_names.h" | 21 #include "components/autofill/core/common/autofill_pref_names.h" |
| 23 #include "components/autofill/core/common/autofill_switches.h" | 22 #include "components/autofill/core/common/autofill_switches.h" |
| 23 #include "components/browser_sync/browser/profile_sync_service.h" |
| 24 #include "components/browser_sync/common/browser_sync_switches.h" | 24 #include "components/browser_sync/common/browser_sync_switches.h" |
| 25 #include "components/dom_distiller/core/dom_distiller_features.h" | 25 #include "components/dom_distiller/core/dom_distiller_features.h" |
| 26 #include "components/history/core/browser/history_delete_directives_data_type_co
ntroller.h" | 26 #include "components/history/core/browser/history_delete_directives_data_type_co
ntroller.h" |
| 27 #include "components/history/core/browser/typed_url_change_processor.h" | 27 #include "components/history/core/browser/typed_url_change_processor.h" |
| 28 #include "components/history/core/browser/typed_url_data_type_controller.h" | 28 #include "components/history/core/browser/typed_url_data_type_controller.h" |
| 29 #include "components/history/core/browser/typed_url_model_associator.h" | 29 #include "components/history/core/browser/typed_url_model_associator.h" |
| 30 #include "components/password_manager/sync/browser/password_data_type_controller
.h" | 30 #include "components/password_manager/sync/browser/password_data_type_controller
.h" |
| 31 #include "components/search_engines/search_engine_data_type_controller.h" | 31 #include "components/search_engines/search_engine_data_type_controller.h" |
| 32 #include "components/sync_bookmarks/bookmark_change_processor.h" | 32 #include "components/sync_bookmarks/bookmark_change_processor.h" |
| 33 #include "components/sync_bookmarks/bookmark_data_type_controller.h" | 33 #include "components/sync_bookmarks/bookmark_data_type_controller.h" |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 // |sync_service_| member, and make GetSyncService require it be called on | 553 // |sync_service_| member, and make GetSyncService require it be called on |
| 554 // the UI thread. | 554 // the UI thread. |
| 555 TypedUrlModelAssociator* model_associator = | 555 TypedUrlModelAssociator* model_associator = |
| 556 new TypedUrlModelAssociator(sync_service, | 556 new TypedUrlModelAssociator(sync_service, |
| 557 history_backend, | 557 history_backend, |
| 558 error_handler); | 558 error_handler); |
| 559 TypedUrlChangeProcessor* change_processor = new TypedUrlChangeProcessor( | 559 TypedUrlChangeProcessor* change_processor = new TypedUrlChangeProcessor( |
| 560 model_associator, history_backend, error_handler, ui_thread); | 560 model_associator, history_backend, error_handler, ui_thread); |
| 561 return SyncComponents(model_associator, change_processor); | 561 return SyncComponents(model_associator, change_processor); |
| 562 } | 562 } |
| OLD | NEW |