| OLD | NEW |
| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 #include "chrome/browser/webdata/web_data_service_factory.h" | 72 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 73 | 73 |
| 74 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) | 74 #if defined(ENABLE_CAPTIVE_PORTAL_DETECTION) |
| 75 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 75 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
| 76 #endif | 76 #endif |
| 77 | 77 |
| 78 #if defined(ENABLE_CONFIGURATION_POLICY) | 78 #if defined(ENABLE_CONFIGURATION_POLICY) |
| 79 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 79 #include "chrome/browser/policy/user_policy_signin_service_factory.h" |
| 80 #endif | 80 #endif |
| 81 | 81 |
| 82 #if defined(OS_CHROMEOS) |
| 83 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h" |
| 84 #endif |
| 85 |
| 82 #if defined(USE_AURA) | 86 #if defined(USE_AURA) |
| 83 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" | 87 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" |
| 84 #endif | 88 #endif |
| 85 | 89 |
| 86 #ifndef NDEBUG | 90 #ifndef NDEBUG |
| 87 #include "base/command_line.h" | 91 #include "base/command_line.h" |
| 88 #include "base/file_util.h" | 92 #include "base/file_util.h" |
| 89 #include "chrome/common/chrome_switches.h" | 93 #include "chrome/common/chrome_switches.h" |
| 90 #endif | 94 #endif |
| 91 | 95 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 DownloadServiceFactory::GetInstance(); | 233 DownloadServiceFactory::GetInstance(); |
| 230 #if defined(ENABLE_EXTENSIONS) | 234 #if defined(ENABLE_EXTENSIONS) |
| 231 extensions::AppRestoreServiceFactory::GetInstance(); | 235 extensions::AppRestoreServiceFactory::GetInstance(); |
| 232 extensions::BluetoothAPIFactory::GetInstance(); | 236 extensions::BluetoothAPIFactory::GetInstance(); |
| 233 extensions::CommandServiceFactory::GetInstance(); | 237 extensions::CommandServiceFactory::GetInstance(); |
| 234 extensions::CookiesAPIFactory::GetInstance(); | 238 extensions::CookiesAPIFactory::GetInstance(); |
| 235 extensions::DialAPIFactory::GetInstance(); | 239 extensions::DialAPIFactory::GetInstance(); |
| 236 extensions::ExtensionSystemFactory::GetInstance(); | 240 extensions::ExtensionSystemFactory::GetInstance(); |
| 237 extensions::FontSettingsAPIFactory::GetInstance(); | 241 extensions::FontSettingsAPIFactory::GetInstance(); |
| 238 extensions::IdleManagerFactory::GetInstance(); | 242 extensions::IdleManagerFactory::GetInstance(); |
| 243 #if defined(OS_CHROMEOS) |
| 244 extensions::InputMethodAPIFactory::GetInstance(); |
| 245 #endif |
| 239 extensions::ManagedModeAPIFactory::GetInstance(); | 246 extensions::ManagedModeAPIFactory::GetInstance(); |
| 240 extensions::OmniboxAPIFactory::GetInstance(); | 247 extensions::OmniboxAPIFactory::GetInstance(); |
| 241 extensions::PreferenceAPIFactory::GetInstance(); | 248 extensions::PreferenceAPIFactory::GetInstance(); |
| 242 extensions::ProcessesAPIFactory::GetInstance(); | 249 extensions::ProcessesAPIFactory::GetInstance(); |
| 243 extensions::SuggestedLinksRegistryFactory::GetInstance(); | 250 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
| 244 extensions::TabCaptureRegistryFactory::GetInstance(); | 251 extensions::TabCaptureRegistryFactory::GetInstance(); |
| 245 extensions::TabsWindowsAPIFactory::GetInstance(); | 252 extensions::TabsWindowsAPIFactory::GetInstance(); |
| 246 extensions::WebNavigationAPIFactory::GetInstance(); | 253 extensions::WebNavigationAPIFactory::GetInstance(); |
| 247 ExtensionManagementAPIFactory::GetInstance(); | 254 ExtensionManagementAPIFactory::GetInstance(); |
| 248 #endif | 255 #endif |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 } | 414 } |
| 408 | 415 |
| 409 result.append("\n /* Toplevel profile */\n"); | 416 result.append("\n /* Toplevel profile */\n"); |
| 410 result.append(" Profile [shape=box];\n"); | 417 result.append(" Profile [shape=box];\n"); |
| 411 | 418 |
| 412 result.append("}\n"); | 419 result.append("}\n"); |
| 413 return result; | 420 return result; |
| 414 } | 421 } |
| 415 | 422 |
| 416 #endif | 423 #endif |
| OLD | NEW |