| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 protector::ProtectorServiceFactory::GetInstance(); | 183 protector::ProtectorServiceFactory::GetInstance(); |
| 184 prerender::PrerenderManagerFactory::GetInstance(); | 184 prerender::PrerenderManagerFactory::GetInstance(); |
| 185 ProfileSyncServiceFactory::GetInstance(); | 185 ProfileSyncServiceFactory::GetInstance(); |
| 186 SessionServiceFactory::GetInstance(); | 186 SessionServiceFactory::GetInstance(); |
| 187 SigninManagerFactory::GetInstance(); | 187 SigninManagerFactory::GetInstance(); |
| 188 #if defined(ENABLE_INPUT_SPEECH) | 188 #if defined(ENABLE_INPUT_SPEECH) |
| 189 SpeechInputExtensionManager::InitializeFactory(); | 189 SpeechInputExtensionManager::InitializeFactory(); |
| 190 #endif | 190 #endif |
| 191 SpellCheckFactory::GetInstance(); | 191 SpellCheckFactory::GetInstance(); |
| 192 TabRestoreServiceFactory::GetInstance(); | 192 TabRestoreServiceFactory::GetInstance(); |
| 193 #if defined(ENABLE_THEMES) |
| 193 ThemeServiceFactory::GetInstance(); | 194 ThemeServiceFactory::GetInstance(); |
| 195 #endif |
| 194 TemplateURLServiceFactory::GetInstance(); | 196 TemplateURLServiceFactory::GetInstance(); |
| 195 TokenServiceFactory::GetInstance(); | 197 TokenServiceFactory::GetInstance(); |
| 196 #if defined(ENABLE_WEB_INTENTS) | 198 #if defined(ENABLE_WEB_INTENTS) |
| 197 WebIntentsRegistryFactory::GetInstance(); | 199 WebIntentsRegistryFactory::GetInstance(); |
| 198 #endif | 200 #endif |
| 199 | 201 |
| 200 built_factories_ = true; | 202 built_factories_ = true; |
| 201 } | 203 } |
| 202 | 204 |
| 203 void ProfileDependencyManager::BuildDestructionOrder(Profile* profile) { | 205 void ProfileDependencyManager::BuildDestructionOrder(Profile* profile) { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 } | 305 } |
| 304 | 306 |
| 305 result.append("\n /* Toplevel profile */\n"); | 307 result.append("\n /* Toplevel profile */\n"); |
| 306 result.append(" Profile [shape=box];\n"); | 308 result.append(" Profile [shape=box];\n"); |
| 307 | 309 |
| 308 result.append("}\n"); | 310 result.append("}\n"); |
| 309 return result; | 311 return result; |
| 310 } | 312 } |
| 311 | 313 |
| 312 #endif | 314 #endif |
| OLD | NEW |