| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 extensions::ManagedModeAPI::GetFactoryInstance(); | 263 extensions::ManagedModeAPI::GetFactoryInstance(); |
| 264 extensions::ManagementAPI::GetFactoryInstance(); | 264 extensions::ManagementAPI::GetFactoryInstance(); |
| 265 extensions::MediaGalleriesPrivateAPIFactory::GetInstance(); | 265 extensions::MediaGalleriesPrivateAPIFactory::GetInstance(); |
| 266 #if defined(OS_CHROMEOS) | 266 #if defined(OS_CHROMEOS) |
| 267 extensions::MediaPlayerAPI::GetFactoryInstance(); | 267 extensions::MediaPlayerAPI::GetFactoryInstance(); |
| 268 #endif | 268 #endif |
| 269 extensions::OmniboxAPI::GetFactoryInstance(); | 269 extensions::OmniboxAPI::GetFactoryInstance(); |
| 270 extensions::PreferenceAPI::GetFactoryInstance(); | 270 extensions::PreferenceAPI::GetFactoryInstance(); |
| 271 extensions::ProcessesAPI::GetFactoryInstance(); | 271 extensions::ProcessesAPI::GetFactoryInstance(); |
| 272 extensions::PushMessagingAPI::GetFactoryInstance(); | 272 extensions::PushMessagingAPI::GetFactoryInstance(); |
| 273 #if defined(ENABLE_INPUT_SPEECH) |
| 274 extensions::SpeechInputAPI::GetFactoryInstance(); |
| 275 #endif |
| 273 extensions::SuggestedLinksRegistryFactory::GetInstance(); | 276 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
| 274 extensions::TabCaptureRegistryFactory::GetInstance(); | 277 extensions::TabCaptureRegistryFactory::GetInstance(); |
| 275 extensions::TabsWindowsAPI::GetFactoryInstance(); | 278 extensions::TabsWindowsAPI::GetFactoryInstance(); |
| 276 extensions::TtsAPI::GetFactoryInstance(); | 279 extensions::TtsAPI::GetFactoryInstance(); |
| 277 extensions::WebNavigationAPI::GetFactoryInstance(); | 280 extensions::WebNavigationAPI::GetFactoryInstance(); |
| 278 #endif | 281 #endif |
| 279 FaviconServiceFactory::GetInstance(); | 282 FaviconServiceFactory::GetInstance(); |
| 280 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) | 283 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) |
| 281 FileBrowserPrivateAPIFactory::GetInstance(); | 284 FileBrowserPrivateAPIFactory::GetInstance(); |
| 282 #endif | 285 #endif |
| (...skipping 26 matching lines...) Expand all Loading... |
| 309 prerender::PrerenderLinkManagerFactory::GetInstance(); | 312 prerender::PrerenderLinkManagerFactory::GetInstance(); |
| 310 ProfileSyncServiceFactory::GetInstance(); | 313 ProfileSyncServiceFactory::GetInstance(); |
| 311 ProtocolHandlerRegistryFactory::GetInstance(); | 314 ProtocolHandlerRegistryFactory::GetInstance(); |
| 312 #if defined(ENABLE_SESSION_SERVICE) | 315 #if defined(ENABLE_SESSION_SERVICE) |
| 313 SessionServiceFactory::GetInstance(); | 316 SessionServiceFactory::GetInstance(); |
| 314 #endif | 317 #endif |
| 315 ShortcutsBackendFactory::GetInstance(); | 318 ShortcutsBackendFactory::GetInstance(); |
| 316 ThumbnailServiceFactory::GetInstance(); | 319 ThumbnailServiceFactory::GetInstance(); |
| 317 SigninManagerFactory::GetInstance(); | 320 SigninManagerFactory::GetInstance(); |
| 318 #if defined(ENABLE_INPUT_SPEECH) | 321 #if defined(ENABLE_INPUT_SPEECH) |
| 319 SpeechInputExtensionManager::InitializeFactory(); | |
| 320 ChromeSpeechRecognitionPreferences::InitializeFactory(); | 322 ChromeSpeechRecognitionPreferences::InitializeFactory(); |
| 321 #endif | 323 #endif |
| 322 SpellcheckServiceFactory::GetInstance(); | 324 SpellcheckServiceFactory::GetInstance(); |
| 323 TabRestoreServiceFactory::GetInstance(); | 325 TabRestoreServiceFactory::GetInstance(); |
| 324 TemplateURLFetcherFactory::GetInstance(); | 326 TemplateURLFetcherFactory::GetInstance(); |
| 325 TemplateURLServiceFactory::GetInstance(); | 327 TemplateURLServiceFactory::GetInstance(); |
| 326 #if defined(ENABLE_THEMES) | 328 #if defined(ENABLE_THEMES) |
| 327 ThemeServiceFactory::GetInstance(); | 329 ThemeServiceFactory::GetInstance(); |
| 328 #endif | 330 #endif |
| 329 TokenServiceFactory::GetInstance(); | 331 TokenServiceFactory::GetInstance(); |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 } | 441 } |
| 440 | 442 |
| 441 result.append("\n /* Toplevel profile */\n"); | 443 result.append("\n /* Toplevel profile */\n"); |
| 442 result.append(" Profile [shape=box];\n"); | 444 result.append(" Profile [shape=box];\n"); |
| 443 | 445 |
| 444 result.append("}\n"); | 446 result.append("}\n"); |
| 445 return result; | 447 return result; |
| 446 } | 448 } |
| 447 | 449 |
| 448 #endif | 450 #endif |
| OLD | NEW |