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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 #if defined(ENABLE_PRINTING) | 200 #if defined(ENABLE_PRINTING) |
201 CloudPrintProxyServiceFactory::GetInstance(); | 201 CloudPrintProxyServiceFactory::GetInstance(); |
202 #endif | 202 #endif |
203 CookieSettings::Factory::GetInstance(); | 203 CookieSettings::Factory::GetInstance(); |
204 #if defined(ENABLE_NOTIFICATIONS) | 204 #if defined(ENABLE_NOTIFICATIONS) |
205 DesktopNotificationServiceFactory::GetInstance(); | 205 DesktopNotificationServiceFactory::GetInstance(); |
206 #endif | 206 #endif |
207 DownloadServiceFactory::GetInstance(); | 207 DownloadServiceFactory::GetInstance(); |
208 extensions::CommandServiceFactory::GetInstance(); | 208 extensions::CommandServiceFactory::GetInstance(); |
209 extensions::SuggestedLinksRegistryFactory::GetInstance(); | 209 extensions::SuggestedLinksRegistryFactory::GetInstance(); |
210 ExtensionSystemFactory::GetInstance(); | 210 extensions::ExtensionSystemFactory::GetInstance(); |
211 FindBarStateFactory::GetInstance(); | 211 FindBarStateFactory::GetInstance(); |
212 #if defined(USE_AURA) | 212 #if defined(USE_AURA) |
213 GesturePrefsObserverFactoryAura::GetInstance(); | 213 GesturePrefsObserverFactoryAura::GetInstance(); |
214 #endif | 214 #endif |
215 GlobalErrorServiceFactory::GetInstance(); | 215 GlobalErrorServiceFactory::GetInstance(); |
216 GoogleURLTrackerFactory::GetInstance(); | 216 GoogleURLTrackerFactory::GetInstance(); |
217 HistoryServiceFactory::GetInstance(); | 217 HistoryServiceFactory::GetInstance(); |
218 #if defined(ENABLE_CONFIGURATION_POLICY) | 218 #if defined(ENABLE_CONFIGURATION_POLICY) |
219 ManagedModePolicyProviderFactory::GetInstance(); | 219 ManagedModePolicyProviderFactory::GetInstance(); |
220 #endif | 220 #endif |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 } | 361 } |
362 | 362 |
363 result.append("\n /* Toplevel profile */\n"); | 363 result.append("\n /* Toplevel profile */\n"); |
364 result.append(" Profile [shape=box];\n"); | 364 result.append(" Profile [shape=box];\n"); |
365 | 365 |
366 result.append("}\n"); | 366 result.append("}\n"); |
367 return result; | 367 return result; |
368 } | 368 } |
369 | 369 |
370 #endif | 370 #endif |
OLD | NEW |