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

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 11587003: Make ChromeGeolocationPermissionContextFactory a ProfileKeyedServiceFactory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address sky's comments. Created 7 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/profiles/profile_dependency_manager.h" 5 #include "chrome/browser/profiles/profile_dependency_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <deque> 8 #include <deque>
9 #include <iterator> 9 #include <iterator>
10 10
(...skipping 19 matching lines...) Expand all
30 #include "chrome/browser/extensions/api/preference/preference_api_factory.h" 30 #include "chrome/browser/extensions/api/preference/preference_api_factory.h"
31 #include "chrome/browser/extensions/api/processes/processes_api.h" 31 #include "chrome/browser/extensions/api/processes/processes_api.h"
32 #include "chrome/browser/extensions/api/profile_keyed_api_factory.h" 32 #include "chrome/browser/extensions/api/profile_keyed_api_factory.h"
33 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api_factor y.h" 33 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api_factor y.h"
34 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h" 34 #include "chrome/browser/extensions/api/tab_capture/tab_capture_registry_factory .h"
35 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" 35 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h"
36 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api.h" 36 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api.h"
37 #include "chrome/browser/extensions/app_restore_service_factory.h" 37 #include "chrome/browser/extensions/app_restore_service_factory.h"
38 #include "chrome/browser/extensions/extension_system_factory.h" 38 #include "chrome/browser/extensions/extension_system_factory.h"
39 #include "chrome/browser/favicon/favicon_service_factory.h" 39 #include "chrome/browser/favicon/favicon_service_factory.h"
40 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_facto ry.h"
40 #include "chrome/browser/google/google_url_tracker_factory.h" 41 #include "chrome/browser/google/google_url_tracker_factory.h"
41 #include "chrome/browser/history/history_service_factory.h" 42 #include "chrome/browser/history/history_service_factory.h"
42 #include "chrome/browser/history/shortcuts_backend_factory.h" 43 #include "chrome/browser/history/shortcuts_backend_factory.h"
43 #include "chrome/browser/intents/web_intents_registry_factory.h" 44 #include "chrome/browser/intents/web_intents_registry_factory.h"
44 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h" 45 #include "chrome/browser/media_gallery/media_galleries_preferences_factory.h"
45 #include "chrome/browser/notifications/desktop_notification_service_factory.h" 46 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
46 #include "chrome/browser/password_manager/password_store_factory.h" 47 #include "chrome/browser/password_manager/password_store_factory.h"
47 #include "chrome/browser/plugins/plugin_prefs_factory.h" 48 #include "chrome/browser/plugins/plugin_prefs_factory.h"
48 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h" 49 #include "chrome/browser/predictors/autocomplete_action_predictor_factory.h"
49 #include "chrome/browser/predictors/predictor_database_factory.h" 50 #include "chrome/browser/predictors/predictor_database_factory.h"
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 228
228 AboutSigninInternalsFactory::GetInstance(); 229 AboutSigninInternalsFactory::GetInstance();
229 230
230 #if defined(ENABLE_BACKGROUND) 231 #if defined(ENABLE_BACKGROUND)
231 BackgroundContentsServiceFactory::GetInstance(); 232 BackgroundContentsServiceFactory::GetInstance();
232 #endif 233 #endif
233 BookmarkModelFactory::GetInstance(); 234 BookmarkModelFactory::GetInstance();
234 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 235 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
235 captive_portal::CaptivePortalServiceFactory::GetInstance(); 236 captive_portal::CaptivePortalServiceFactory::GetInstance();
236 #endif 237 #endif
238 ChromeGeolocationPermissionContextFactory::GetInstance();
237 ChromeURLDataManagerFactory::GetInstance(); 239 ChromeURLDataManagerFactory::GetInstance();
238 #if defined(ENABLE_PRINTING) 240 #if defined(ENABLE_PRINTING)
239 CloudPrintProxyServiceFactory::GetInstance(); 241 CloudPrintProxyServiceFactory::GetInstance();
240 #endif 242 #endif
241 CookieSettings::Factory::GetInstance(); 243 CookieSettings::Factory::GetInstance();
242 #if defined(ENABLE_NOTIFICATIONS) 244 #if defined(ENABLE_NOTIFICATIONS)
243 DesktopNotificationServiceFactory::GetInstance(); 245 DesktopNotificationServiceFactory::GetInstance();
244 #endif 246 #endif
245 DownloadServiceFactory::GetInstance(); 247 DownloadServiceFactory::GetInstance();
246 #if defined(ENABLE_EXTENSIONS) 248 #if defined(ENABLE_EXTENSIONS)
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 } 439 }
438 440
439 result.append("\n /* Toplevel profile */\n"); 441 result.append("\n /* Toplevel profile */\n");
440 result.append(" Profile [shape=box];\n"); 442 result.append(" Profile [shape=box];\n");
441 443
442 result.append("}\n"); 444 result.append("}\n");
443 return result; 445 return result;
444 } 446 }
445 447
446 #endif 448 #endif
OLDNEW
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698