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 "ios/chrome/browser/browser_state/browser_state_keyed_service_factories
.h" | 5 #include "ios/chrome/browser/browser_state/browser_state_keyed_service_factories
.h" |
6 | 6 |
7 #include "ios/chrome/browser/autocomplete/autocomplete_classifier_factory.h" | 7 #include "ios/chrome/browser/autocomplete/autocomplete_classifier_factory.h" |
8 #include "ios/chrome/browser/autocomplete/in_memory_url_index_factory.h" | 8 #include "ios/chrome/browser/autocomplete/in_memory_url_index_factory.h" |
9 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h" | 9 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h" |
10 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h" | 10 #include "ios/chrome/browser/autofill/personal_data_manager_factory.h" |
11 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" | 11 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" |
12 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h" | 12 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h" |
13 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" | 13 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" |
14 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h" | 14 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h" |
15 #include "ios/chrome/browser/favicon/favicon_service_factory.h" | 15 #include "ios/chrome/browser/favicon/favicon_service_factory.h" |
16 #include "ios/chrome/browser/favicon/ios_chrome_favicon_loader_factory.h" | 16 #include "ios/chrome/browser/favicon/ios_chrome_favicon_loader_factory.h" |
17 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_cache_factory.h" | 17 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_cache_factory.h" |
18 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" | 18 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h" |
| 19 #include "ios/chrome/browser/google/google_logo_service_factory.h" |
19 #include "ios/chrome/browser/google/google_url_tracker_factory.h" | 20 #include "ios/chrome/browser/google/google_url_tracker_factory.h" |
20 #include "ios/chrome/browser/history/history_service_factory.h" | 21 #include "ios/chrome/browser/history/history_service_factory.h" |
21 #include "ios/chrome/browser/history/top_sites_factory.h" | 22 #include "ios/chrome/browser/history/top_sites_factory.h" |
22 #include "ios/chrome/browser/history/web_history_service_factory.h" | 23 #include "ios/chrome/browser/history/web_history_service_factory.h" |
23 #include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provid
er_factory.h" | 24 #include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provid
er_factory.h" |
24 #include "ios/chrome/browser/ntp_snippets/ios_chrome_content_suggestions_service
_factory.h" | 25 #include "ios/chrome/browser/ntp_snippets/ios_chrome_content_suggestions_service
_factory.h" |
25 #include "ios/chrome/browser/passwords/ios_chrome_password_manager_setting_migra
tor_service_factory.h" | 26 #include "ios/chrome/browser/passwords/ios_chrome_password_manager_setting_migra
tor_service_factory.h" |
26 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h" | 27 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h" |
27 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" | 28 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" |
28 #include "ios/chrome/browser/services/gcm/ios_chrome_gcm_profile_service_factory
.h" | 29 #include "ios/chrome/browser/services/gcm/ios_chrome_gcm_profile_service_factory
.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 ios::WebHistoryServiceFactory::GetInstance(); | 80 ios::WebHistoryServiceFactory::GetInstance(); |
80 AuthenticationServiceFactory::GetInstance(); | 81 AuthenticationServiceFactory::GetInstance(); |
81 IOSChromeGCMProfileServiceFactory::GetInstance(); | 82 IOSChromeGCMProfileServiceFactory::GetInstance(); |
82 IOSChromeLargeIconCacheFactory::GetInstance(); | 83 IOSChromeLargeIconCacheFactory::GetInstance(); |
83 IOSChromeLargeIconServiceFactory::GetInstance(); | 84 IOSChromeLargeIconServiceFactory::GetInstance(); |
84 IOSChromeFaviconLoaderFactory::GetInstance(); | 85 IOSChromeFaviconLoaderFactory::GetInstance(); |
85 IOSChromeContentSuggestionsServiceFactory::GetInstance(); | 86 IOSChromeContentSuggestionsServiceFactory::GetInstance(); |
86 IOSChromePasswordManagerSettingMigratorServiceFactory::GetInstance(); | 87 IOSChromePasswordManagerSettingMigratorServiceFactory::GetInstance(); |
87 IOSChromePasswordStoreFactory::GetInstance(); | 88 IOSChromePasswordStoreFactory::GetInstance(); |
88 IOSChromeProfileInvalidationProviderFactory::GetInstance(); | 89 IOSChromeProfileInvalidationProviderFactory::GetInstance(); |
| 90 GoogleLogoServiceFactory::GetInstance(); |
89 OAuth2TokenServiceFactory::GetInstance(); | 91 OAuth2TokenServiceFactory::GetInstance(); |
90 SigninClientFactory::GetInstance(); | 92 SigninClientFactory::GetInstance(); |
91 suggestions::SuggestionsServiceFactory::GetInstance(); | 93 suggestions::SuggestionsServiceFactory::GetInstance(); |
92 SyncSetupServiceFactory::GetInstance(); | 94 SyncSetupServiceFactory::GetInstance(); |
93 TranslateAcceptLanguagesFactory::GetInstance(); | 95 TranslateAcceptLanguagesFactory::GetInstance(); |
94 } | 96 } |
OLD | NEW |