| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/profiles/chrome_browser_main_extra_parts_profiles.h" | 5 #include "chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h" | 11 #include "chrome/browser/autocomplete/in_memory_url_index_factory.h" |
| 12 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" | 12 #include "chrome/browser/autocomplete/shortcuts_backend_factory.h" |
| 13 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 13 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 14 #include "chrome/browser/background/background_contents_service_factory.h" | 14 #include "chrome/browser/background/background_contents_service_factory.h" |
| 15 #include "chrome/browser/bluetooth/bluetooth_allowed_devices_map_factory.h" |
| 15 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 16 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 16 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h" | 17 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h" |
| 17 #include "chrome/browser/chrome_browser_main.h" | 18 #include "chrome/browser/chrome_browser_main.h" |
| 18 #include "chrome/browser/content_settings/cookie_settings_factory.h" | 19 #include "chrome/browser/content_settings/cookie_settings_factory.h" |
| 19 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" | 20 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
| 20 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" | 21 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" |
| 21 #include "chrome/browser/data_use_measurement/chrome_data_use_ascriber_service_f
actory.h" | 22 #include "chrome/browser/data_use_measurement/chrome_data_use_ascriber_service_f
actory.h" |
| 22 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" | 23 #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" |
| 23 #include "chrome/browser/domain_reliability/service_factory.h" | 24 #include "chrome/browser/domain_reliability/service_factory.h" |
| 24 #include "chrome/browser/download/download_service_factory.h" | 25 #include "chrome/browser/download/download_service_factory.h" |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 TabRestoreServiceFactory::GetInstance(); | 344 TabRestoreServiceFactory::GetInstance(); |
| 344 TemplateURLFetcherFactory::GetInstance(); | 345 TemplateURLFetcherFactory::GetInstance(); |
| 345 TemplateURLServiceFactory::GetInstance(); | 346 TemplateURLServiceFactory::GetInstance(); |
| 346 #if defined(OS_WIN) | 347 #if defined(OS_WIN) |
| 347 TriggeredProfileResetterFactory::GetInstance(); | 348 TriggeredProfileResetterFactory::GetInstance(); |
| 348 #endif | 349 #endif |
| 349 #if !defined(OS_ANDROID) | 350 #if !defined(OS_ANDROID) |
| 350 UsbChooserContextFactory::GetInstance(); | 351 UsbChooserContextFactory::GetInstance(); |
| 351 #endif | 352 #endif |
| 352 WebDataServiceFactory::GetInstance(); | 353 WebDataServiceFactory::GetInstance(); |
| 354 BluetoothAllowedDevicesMapFactory::GetInstance(); |
| 353 } | 355 } |
| 354 | 356 |
| 355 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { | 357 void ChromeBrowserMainExtraPartsProfiles::PreProfileInit() { |
| 356 EnsureBrowserContextKeyedServiceFactoriesBuilt(); | 358 EnsureBrowserContextKeyedServiceFactoriesBuilt(); |
| 357 } | 359 } |
| OLD | NEW |