| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 extensions::PushMessagingAPI::GetFactoryInstance(); | 289 extensions::PushMessagingAPI::GetFactoryInstance(); |
| 290 extensions::SessionRestoreAPI::GetFactoryInstance(); | 290 extensions::SessionRestoreAPI::GetFactoryInstance(); |
| 291 #if defined(ENABLE_INPUT_SPEECH) | 291 #if defined(ENABLE_INPUT_SPEECH) |
| 292 extensions::SpeechInputAPI::GetFactoryInstance(); | 292 extensions::SpeechInputAPI::GetFactoryInstance(); |
| 293 #endif | 293 #endif |
| 294 extensions::SuggestedLinksRegistryFactory::GetInstance(); | 294 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
| 295 extensions::TabCaptureRegistryFactory::GetInstance(); | 295 extensions::TabCaptureRegistryFactory::GetInstance(); |
| 296 extensions::TabsWindowsAPI::GetFactoryInstance(); | 296 extensions::TabsWindowsAPI::GetFactoryInstance(); |
| 297 extensions::TtsAPI::GetFactoryInstance(); | 297 extensions::TtsAPI::GetFactoryInstance(); |
| 298 extensions::WebAccessibleResourcesParser::GetFactoryInstance(); | 298 extensions::WebAccessibleResourcesParser::GetFactoryInstance(); |
| 299 #if defined(ENABLE_WEB_INTENTS) |
| 299 extensions::WebIntentsParser::GetFactoryInstance(); | 300 extensions::WebIntentsParser::GetFactoryInstance(); |
| 301 #endif |
| 300 extensions::WebNavigationAPI::GetFactoryInstance(); | 302 extensions::WebNavigationAPI::GetFactoryInstance(); |
| 301 #endif | 303 #endif |
| 302 FaviconServiceFactory::GetInstance(); | 304 FaviconServiceFactory::GetInstance(); |
| 303 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) | 305 #if defined(OS_CHROMEOS) && defined(FILE_MANAGER_EXTENSION) |
| 304 FileBrowserPrivateAPIFactory::GetInstance(); | 306 FileBrowserPrivateAPIFactory::GetInstance(); |
| 305 #endif | 307 #endif |
| 306 FindBarStateFactory::GetInstance(); | 308 FindBarStateFactory::GetInstance(); |
| 307 GAIAInfoUpdateServiceFactory::GetInstance(); | 309 GAIAInfoUpdateServiceFactory::GetInstance(); |
| 308 #if defined(USE_AURA) | 310 #if defined(USE_AURA) |
| 309 GesturePrefsObserverFactoryAura::GetInstance(); | 311 GesturePrefsObserverFactoryAura::GetInstance(); |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 } | 463 } |
| 462 | 464 |
| 463 result.append("\n /* Toplevel profile */\n"); | 465 result.append("\n /* Toplevel profile */\n"); |
| 464 result.append(" Profile [shape=box];\n"); | 466 result.append(" Profile [shape=box];\n"); |
| 465 | 467 |
| 466 result.append("}\n"); | 468 result.append("}\n"); |
| 467 return result; | 469 return result; |
| 468 } | 470 } |
| 469 | 471 |
| 470 #endif | 472 #endif |
| OLD | NEW |