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

Side by Side Diff: ios/chrome/browser/browser_state/browser_state_keyed_service_factories.mm

Issue 1413903008: Add LargeIconCache and LargeIconServiceFactory for iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: broken sort Created 5 years, 1 month 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 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_client_factory.h" 11 #include "ios/chrome/browser/bookmarks/bookmark_client_factory.h"
12 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" 12 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h"
13 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h" 13 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h"
14 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h" 14 #include "ios/chrome/browser/content_settings/cookie_settings_factory.h"
15 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h" 15 #include "ios/chrome/browser/dom_distiller/dom_distiller_service_factory.h"
16 #include "ios/chrome/browser/enhanced_bookmarks/bookmark_server_cluster_service_ factory.h" 16 #include "ios/chrome/browser/enhanced_bookmarks/bookmark_server_cluster_service_ factory.h"
17 #include "ios/chrome/browser/enhanced_bookmarks/enhanced_bookmark_model_factory. h" 17 #include "ios/chrome/browser/enhanced_bookmarks/enhanced_bookmark_model_factory. h"
18 #include "ios/chrome/browser/favicon/favicon_service_factory.h" 18 #include "ios/chrome/browser/favicon/favicon_service_factory.h"
19 #include "ios/chrome/browser/favicon/ios_chrome_favicon_loader_factory.h" 19 #include "ios/chrome/browser/favicon/ios_chrome_favicon_loader_factory.h"
20 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_cache_factory.h"
21 #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h"
20 #include "ios/chrome/browser/google/google_url_tracker_factory.h" 22 #include "ios/chrome/browser/google/google_url_tracker_factory.h"
21 #include "ios/chrome/browser/history/history_service_factory.h" 23 #include "ios/chrome/browser/history/history_service_factory.h"
22 #include "ios/chrome/browser/history/top_sites_factory.h" 24 #include "ios/chrome/browser/history/top_sites_factory.h"
23 #include "ios/chrome/browser/history/web_history_service_factory.h" 25 #include "ios/chrome/browser/history/web_history_service_factory.h"
24 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h" 26 #include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h"
25 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" 27 #include "ios/chrome/browser/search_engines/template_url_service_factory.h"
26 #include "ios/chrome/browser/signin/about_signin_internals_factory.h" 28 #include "ios/chrome/browser/signin/about_signin_internals_factory.h"
27 #include "ios/chrome/browser/signin/account_consistency_service_factory.h" 29 #include "ios/chrome/browser/signin/account_consistency_service_factory.h"
28 #include "ios/chrome/browser/signin/account_fetcher_service_factory.h" 30 #include "ios/chrome/browser/signin/account_fetcher_service_factory.h"
29 #include "ios/chrome/browser/signin/account_reconcilor_factory.h" 31 #include "ios/chrome/browser/signin/account_reconcilor_factory.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ios::HistoryServiceFactory::GetInstance(); 71 ios::HistoryServiceFactory::GetInstance();
70 ios::InMemoryURLIndexFactory::GetInstance(); 72 ios::InMemoryURLIndexFactory::GetInstance();
71 ios::ShortcutsBackendFactory::GetInstance(); 73 ios::ShortcutsBackendFactory::GetInstance();
72 ios::SigninErrorControllerFactory::GetInstance(); 74 ios::SigninErrorControllerFactory::GetInstance();
73 ios::SigninManagerFactory::GetInstance(); 75 ios::SigninManagerFactory::GetInstance();
74 ios::StartupTaskRunnerServiceFactory::GetInstance(); 76 ios::StartupTaskRunnerServiceFactory::GetInstance();
75 ios::TemplateURLServiceFactory::GetInstance(); 77 ios::TemplateURLServiceFactory::GetInstance();
76 ios::TopSitesFactory::GetInstance(); 78 ios::TopSitesFactory::GetInstance();
77 ios::WebDataServiceFactory::GetInstance(); 79 ios::WebDataServiceFactory::GetInstance();
78 ios::WebHistoryServiceFactory::GetInstance(); 80 ios::WebHistoryServiceFactory::GetInstance();
81 IOSChromeLargeIconCacheFactory::GetInstance();
82 IOSChromeLargeIconServiceFactory::GetInstance();
79 IOSChromeFaviconLoaderFactory::GetInstance(); 83 IOSChromeFaviconLoaderFactory::GetInstance();
80 IOSChromePasswordStoreFactory::GetInstance(); 84 IOSChromePasswordStoreFactory::GetInstance();
81 OAuth2TokenServiceFactory::GetInstance(); 85 OAuth2TokenServiceFactory::GetInstance();
82 PersonalDataManagerFactory::GetInstance(); 86 PersonalDataManagerFactory::GetInstance();
83 SigninClientFactory::GetInstance(); 87 SigninClientFactory::GetInstance();
84 suggestions::SuggestionsServiceFactory::GetInstance(); 88 suggestions::SuggestionsServiceFactory::GetInstance();
85 SyncSetupServiceFactory::GetInstance(); 89 SyncSetupServiceFactory::GetInstance();
86 TranslateAcceptLanguagesFactory::GetInstance(); 90 TranslateAcceptLanguagesFactory::GetInstance();
87 91
88 if (ios::GetKeyedServiceProvider()) 92 if (ios::GetKeyedServiceProvider())
89 ios::GetKeyedServiceProvider()->AssertKeyedFactoriesBuilt(); 93 ios::GetKeyedServiceProvider()->AssertKeyedFactoriesBuilt();
90 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698