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

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

Issue 11611004: Move the InputComponents out of extensions entirely. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: 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/extensions/extension_function_registry.cc ('k') | chrome/chrome_browser.gypi » ('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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 79 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
80 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" 80 #include "chrome/browser/captive_portal/captive_portal_service_factory.h"
81 #endif 81 #endif
82 82
83 #if defined(ENABLE_CONFIGURATION_POLICY) 83 #if defined(ENABLE_CONFIGURATION_POLICY)
84 #include "chrome/browser/policy/user_policy_signin_service_factory.h" 84 #include "chrome/browser/policy/user_policy_signin_service_factory.h"
85 #endif 85 #endif
86 86
87 #if defined(OS_CHROMEOS) 87 #if defined(OS_CHROMEOS)
88 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h" 88 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h"
89 #include "chrome/browser/extensions/api/input_ime/input_ime_api_factory.h" 89 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h"
90 #if defined(FILE_MANAGER_EXTENSION) 90 #if defined(FILE_MANAGER_EXTENSION)
91 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" 91 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h"
92 #endif 92 #endif
93 #endif 93 #endif
94 94
95 #if defined(USE_AURA) 95 #if defined(USE_AURA)
96 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" 96 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h"
97 #endif 97 #endif
98 98
99 #ifndef NDEBUG 99 #ifndef NDEBUG
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 extensions::AppRestoreServiceFactory::GetInstance(); 246 extensions::AppRestoreServiceFactory::GetInstance();
247 extensions::BookmarkAPIFactory::GetInstance(); 247 extensions::BookmarkAPIFactory::GetInstance();
248 extensions::BluetoothAPIFactory::GetInstance(); 248 extensions::BluetoothAPIFactory::GetInstance();
249 extensions::CommandServiceFactory::GetInstance(); 249 extensions::CommandServiceFactory::GetInstance();
250 extensions::DialAPIFactory::GetInstance(); 250 extensions::DialAPIFactory::GetInstance();
251 extensions::ExtensionSystemFactory::GetInstance(); 251 extensions::ExtensionSystemFactory::GetInstance();
252 extensions::FontSettingsAPIFactory::GetInstance(); 252 extensions::FontSettingsAPIFactory::GetInstance();
253 extensions::HistoryAPIFactory::GetInstance(); 253 extensions::HistoryAPIFactory::GetInstance();
254 extensions::IdleManagerFactory::GetInstance(); 254 extensions::IdleManagerFactory::GetInstance();
255 #if defined(OS_CHROMEOS) 255 #if defined(OS_CHROMEOS)
256 extensions::InputImeAPIFactory::GetInstance();
257 extensions::InputMethodAPIFactory::GetInstance(); 256 extensions::InputMethodAPIFactory::GetInstance();
258 #endif 257 #endif
259 extensions::MediaGalleriesPrivateAPIFactory::GetInstance(); 258 extensions::MediaGalleriesPrivateAPIFactory::GetInstance();
260 extensions::OmniboxAPIFactory::GetInstance(); 259 extensions::OmniboxAPIFactory::GetInstance();
261 extensions::PreferenceAPIFactory::GetInstance(); 260 extensions::PreferenceAPIFactory::GetInstance();
262 extensions::ProfileKeyedAPIFactory<extensions::CookiesAPI>::GetInstance(); 261 extensions::ProfileKeyedAPIFactory<extensions::CookiesAPI>::GetInstance();
262 #if defined(OS_CHROMEOS)
263 extensions::ProfileKeyedAPIFactory<extensions::InputImeAPI>::GetInstance();
264 #endif
263 extensions::ProfileKeyedAPIFactory<extensions::ManagedModeAPI>::GetInstance(); 265 extensions::ProfileKeyedAPIFactory<extensions::ManagedModeAPI>::GetInstance();
264 extensions::ProfileKeyedAPIFactory<extensions::ProcessesAPI>::GetInstance(); 266 extensions::ProfileKeyedAPIFactory<extensions::ProcessesAPI>::GetInstance();
265 extensions::ProfileKeyedAPIFactory<extensions::TabsWindowsAPI>::GetInstance(); 267 extensions::ProfileKeyedAPIFactory<extensions::TabsWindowsAPI>::GetInstance();
266 extensions::ProfileKeyedAPIFactory 268 extensions::ProfileKeyedAPIFactory
267 <extensions::WebNavigationAPI>::GetInstance(); 269 <extensions::WebNavigationAPI>::GetInstance();
268 extensions::PushMessagingAPIFactory::GetInstance(); 270 extensions::PushMessagingAPIFactory::GetInstance();
269 extensions::SuggestedLinksRegistryFactory::GetInstance(); 271 extensions::SuggestedLinksRegistryFactory::GetInstance();
270 extensions::TabCaptureRegistryFactory::GetInstance(); 272 extensions::TabCaptureRegistryFactory::GetInstance();
271 ExtensionManagementAPIFactory::GetInstance(); 273 ExtensionManagementAPIFactory::GetInstance();
272 #endif 274 #endif
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 } 435 }
434 436
435 result.append("\n /* Toplevel profile */\n"); 437 result.append("\n /* Toplevel profile */\n");
436 result.append(" Profile [shape=box];\n"); 438 result.append(" Profile [shape=box];\n");
437 439
438 result.append("}\n"); 440 result.append("}\n");
439 return result; 441 return result;
440 } 442 }
441 443
442 #endif 444 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_function_registry.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698