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

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

Issue 11442074: Lazy initialization for ExtensionInputMethodEventRouter (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 8 years 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
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_chromeos.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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "chrome/browser/webdata/web_data_service_factory.h" 75 #include "chrome/browser/webdata/web_data_service_factory.h"
76 76
77 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) 77 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION)
78 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" 78 #include "chrome/browser/captive_portal/captive_portal_service_factory.h"
79 #endif 79 #endif
80 80
81 #if defined(ENABLE_CONFIGURATION_POLICY) 81 #if defined(ENABLE_CONFIGURATION_POLICY)
82 #include "chrome/browser/policy/user_policy_signin_service_factory.h" 82 #include "chrome/browser/policy/user_policy_signin_service_factory.h"
83 #endif 83 #endif
84 84
85 #if defined(OS_CHROMEOS)
86 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h"
87 #endif
88
85 #if defined(USE_AURA) 89 #if defined(USE_AURA)
86 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" 90 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h"
87 #endif 91 #endif
88 92
89 #ifndef NDEBUG 93 #ifndef NDEBUG
90 #include "base/command_line.h" 94 #include "base/command_line.h"
91 #include "base/file_util.h" 95 #include "base/file_util.h"
92 #include "chrome/common/chrome_switches.h" 96 #include "chrome/common/chrome_switches.h"
93 #endif 97 #endif
94 98
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 extensions::AppRestoreServiceFactory::GetInstance(); 238 extensions::AppRestoreServiceFactory::GetInstance();
235 extensions::BookmarkAPIFactory::GetInstance(); 239 extensions::BookmarkAPIFactory::GetInstance();
236 extensions::BluetoothAPIFactory::GetInstance(); 240 extensions::BluetoothAPIFactory::GetInstance();
237 extensions::CommandServiceFactory::GetInstance(); 241 extensions::CommandServiceFactory::GetInstance();
238 extensions::CookiesAPIFactory::GetInstance(); 242 extensions::CookiesAPIFactory::GetInstance();
239 extensions::DialAPIFactory::GetInstance(); 243 extensions::DialAPIFactory::GetInstance();
240 extensions::ExtensionSystemFactory::GetInstance(); 244 extensions::ExtensionSystemFactory::GetInstance();
241 extensions::FontSettingsAPIFactory::GetInstance(); 245 extensions::FontSettingsAPIFactory::GetInstance();
242 extensions::HistoryAPIFactory::GetInstance(); 246 extensions::HistoryAPIFactory::GetInstance();
243 extensions::IdleManagerFactory::GetInstance(); 247 extensions::IdleManagerFactory::GetInstance();
248 #if defined(OS_CHROMEOS)
249 extensions::InputMethodAPIFactory::GetInstance();
250 #endif
244 extensions::ManagedModeAPIFactory::GetInstance(); 251 extensions::ManagedModeAPIFactory::GetInstance();
245 extensions::MediaGalleriesPrivateAPIFactory::GetInstance(); 252 extensions::MediaGalleriesPrivateAPIFactory::GetInstance();
246 extensions::OmniboxAPIFactory::GetInstance(); 253 extensions::OmniboxAPIFactory::GetInstance();
247 extensions::PreferenceAPIFactory::GetInstance(); 254 extensions::PreferenceAPIFactory::GetInstance();
248 extensions::ProcessesAPIFactory::GetInstance(); 255 extensions::ProcessesAPIFactory::GetInstance();
249 extensions::PushMessagingAPIFactory::GetInstance(); 256 extensions::PushMessagingAPIFactory::GetInstance();
250 extensions::SuggestedLinksRegistryFactory::GetInstance(); 257 extensions::SuggestedLinksRegistryFactory::GetInstance();
251 extensions::TabCaptureRegistryFactory::GetInstance(); 258 extensions::TabCaptureRegistryFactory::GetInstance();
252 extensions::TabsWindowsAPIFactory::GetInstance(); 259 extensions::TabsWindowsAPIFactory::GetInstance();
253 extensions::WebNavigationAPIFactory::GetInstance(); 260 extensions::WebNavigationAPIFactory::GetInstance();
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 } 418 }
412 419
413 result.append("\n /* Toplevel profile */\n"); 420 result.append("\n /* Toplevel profile */\n");
414 result.append(" Profile [shape=box];\n"); 421 result.append(" Profile [shape=box];\n");
415 422
416 result.append("}\n"); 423 result.append("}\n");
417 return result; 424 return result;
418 } 425 }
419 426
420 #endif 427 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698