| OLD | NEW |
| 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 "chrome/browser/sync/chrome_sync_client.h" | 5 #include "chrome/browser/sync/chrome_sync_client.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "components/dom_distiller/core/dom_distiller_service.h" | 49 #include "components/dom_distiller/core/dom_distiller_service.h" |
| 50 #include "components/history/core/browser/history_model_worker.h" | 50 #include "components/history/core/browser/history_model_worker.h" |
| 51 #include "components/history/core/browser/history_service.h" | 51 #include "components/history/core/browser/history_service.h" |
| 52 #include "components/invalidation/impl/profile_invalidation_provider.h" | 52 #include "components/invalidation/impl/profile_invalidation_provider.h" |
| 53 #include "components/password_manager/core/browser/password_store.h" | 53 #include "components/password_manager/core/browser/password_store.h" |
| 54 #include "components/password_manager/sync/browser/password_model_worker.h" | 54 #include "components/password_manager/sync/browser/password_model_worker.h" |
| 55 #include "components/search_engines/search_engine_data_type_controller.h" | 55 #include "components/search_engines/search_engine_data_type_controller.h" |
| 56 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 56 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 57 #include "components/spellcheck/spellcheck_build_features.h" | 57 #include "components/spellcheck/spellcheck_build_features.h" |
| 58 #include "components/sync/base/report_unrecoverable_error.h" | 58 #include "components/sync/base/report_unrecoverable_error.h" |
| 59 #include "components/sync/driver/glue/browser_thread_model_worker.h" | |
| 60 #include "components/sync/driver/glue/ui_model_worker.h" | |
| 61 #include "components/sync/driver/sync_api_component_factory.h" | 59 #include "components/sync/driver/sync_api_component_factory.h" |
| 62 #include "components/sync/driver/sync_util.h" | 60 #include "components/sync/driver/sync_util.h" |
| 63 #include "components/sync/driver/ui_data_type_controller.h" | 61 #include "components/sync/driver/ui_data_type_controller.h" |
| 62 #include "components/sync/engine/browser_thread_model_worker.h" |
| 64 #include "components/sync/engine/passive_model_worker.h" | 63 #include "components/sync/engine/passive_model_worker.h" |
| 64 #include "components/sync/engine/ui_model_worker.h" |
| 65 #include "components/sync_preferences/pref_service_syncable.h" | 65 #include "components/sync_preferences/pref_service_syncable.h" |
| 66 #include "components/sync_sessions/sync_sessions_client.h" | 66 #include "components/sync_sessions/sync_sessions_client.h" |
| 67 #include "content/public/browser/browser_thread.h" | 67 #include "content/public/browser/browser_thread.h" |
| 68 #include "extensions/features/features.h" | 68 #include "extensions/features/features.h" |
| 69 #include "ui/base/device_form_factor.h" | 69 #include "ui/base/device_form_factor.h" |
| 70 | 70 |
| 71 #if BUILDFLAG(ENABLE_APP_LIST) | 71 #if BUILDFLAG(ENABLE_APP_LIST) |
| 72 #include "chrome/browser/ui/app_list/app_list_syncable_service.h" | 72 #include "chrome/browser/ui/app_list/app_list_syncable_service.h" |
| 73 #include "chrome/browser/ui/app_list/app_list_syncable_service_factory.h" | 73 #include "chrome/browser/ui/app_list/app_list_syncable_service_factory.h" |
| 74 #include "ui/app_list/app_list_switches.h" | 74 #include "ui/app_list/app_list_switches.h" |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 sync_service->RegisterDataTypeController( | 628 sync_service->RegisterDataTypeController( |
| 629 base::MakeUnique<SupervisedUserSyncDataTypeController>( | 629 base::MakeUnique<SupervisedUserSyncDataTypeController>( |
| 630 syncer::SUPERVISED_USER_SETTINGS, error_callback, this, profile_)); | 630 syncer::SUPERVISED_USER_SETTINGS, error_callback, this, profile_)); |
| 631 sync_service->RegisterDataTypeController( | 631 sync_service->RegisterDataTypeController( |
| 632 base::MakeUnique<SupervisedUserSyncDataTypeController>( | 632 base::MakeUnique<SupervisedUserSyncDataTypeController>( |
| 633 syncer::SUPERVISED_USER_WHITELISTS, error_callback, this, profile_)); | 633 syncer::SUPERVISED_USER_WHITELISTS, error_callback, this, profile_)); |
| 634 #endif | 634 #endif |
| 635 } | 635 } |
| 636 | 636 |
| 637 } // namespace browser_sync | 637 } // namespace browser_sync |
| OLD | NEW |