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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" | 84 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" |
85 #endif | 85 #endif |
86 | 86 |
87 #if defined(ENABLE_CONFIGURATION_POLICY) | 87 #if defined(ENABLE_CONFIGURATION_POLICY) |
88 #include "chrome/browser/policy/user_policy_signin_service_factory.h" | 88 #include "chrome/browser/policy/user_policy_signin_service_factory.h" |
89 #endif | 89 #endif |
90 | 90 |
91 #if defined(OS_CHROMEOS) | 91 #if defined(OS_CHROMEOS) |
92 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h" | 92 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h" |
93 #include "chrome/browser/chromeos/extensions/media_player_api.h" | 93 #include "chrome/browser/chromeos/extensions/media_player_api.h" |
| 94 #include "chrome/browser/chromeos/extensions/networking_private_api_factory.h" |
94 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" | 95 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" |
95 #if defined(FILE_MANAGER_EXTENSION) | 96 #if defined(FILE_MANAGER_EXTENSION) |
96 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" | 97 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" |
97 #endif | 98 #endif |
98 #endif | 99 #endif |
99 | 100 |
100 #if defined(USE_AURA) | 101 #if defined(USE_AURA) |
101 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" | 102 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" |
102 #endif | 103 #endif |
103 | 104 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 #endif | 292 #endif |
292 FindBarStateFactory::GetInstance(); | 293 FindBarStateFactory::GetInstance(); |
293 GAIAInfoUpdateServiceFactory::GetInstance(); | 294 GAIAInfoUpdateServiceFactory::GetInstance(); |
294 #if defined(USE_AURA) | 295 #if defined(USE_AURA) |
295 GesturePrefsObserverFactoryAura::GetInstance(); | 296 GesturePrefsObserverFactoryAura::GetInstance(); |
296 #endif | 297 #endif |
297 GlobalErrorServiceFactory::GetInstance(); | 298 GlobalErrorServiceFactory::GetInstance(); |
298 GoogleURLTrackerFactory::GetInstance(); | 299 GoogleURLTrackerFactory::GetInstance(); |
299 HistoryServiceFactory::GetInstance(); | 300 HistoryServiceFactory::GetInstance(); |
300 MediaGalleriesPreferencesFactory::GetInstance(); | 301 MediaGalleriesPreferencesFactory::GetInstance(); |
| 302 #if defined(OS_CHROMEOS) |
| 303 chromeos::NetworkingPrivateAPIFactory::GetInstance(); |
| 304 #endif |
301 NTPResourceCacheFactory::GetInstance(); | 305 NTPResourceCacheFactory::GetInstance(); |
302 PasswordStoreFactory::GetInstance(); | 306 PasswordStoreFactory::GetInstance(); |
303 PersonalDataManagerFactory::GetInstance(); | 307 PersonalDataManagerFactory::GetInstance(); |
304 #if !defined(OS_ANDROID) | 308 #if !defined(OS_ANDROID) |
305 PinnedTabServiceFactory::GetInstance(); | 309 PinnedTabServiceFactory::GetInstance(); |
306 #endif | 310 #endif |
307 #if defined(ENABLE_PLUGINS) | 311 #if defined(ENABLE_PLUGINS) |
308 PluginPrefsFactory::GetInstance(); | 312 PluginPrefsFactory::GetInstance(); |
309 #endif | 313 #endif |
310 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) | 314 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 } | 451 } |
448 | 452 |
449 result.append("\n /* Toplevel profile */\n"); | 453 result.append("\n /* Toplevel profile */\n"); |
450 result.append(" Profile [shape=box];\n"); | 454 result.append(" Profile [shape=box];\n"); |
451 | 455 |
452 result.append("}\n"); | 456 result.append("}\n"); |
453 return result; | 457 return result; |
454 } | 458 } |
455 | 459 |
456 #endif | 460 #endif |
OLD | NEW |