Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: chrome/browser/profiles/profile_dependency_manager.cc

Issue 11975015: This adds a private extension API to use for simple networking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Converting to ONC Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 #include "chrome/browser/captive_portal/captive_portal_service_factory.h" 87 #include "chrome/browser/captive_portal/captive_portal_service_factory.h"
88 #endif 88 #endif
89 89
90 #if defined(ENABLE_CONFIGURATION_POLICY) 90 #if defined(ENABLE_CONFIGURATION_POLICY)
91 #include "chrome/browser/policy/user_policy_signin_service_factory.h" 91 #include "chrome/browser/policy/user_policy_signin_service_factory.h"
92 #endif 92 #endif
93 93
94 #if defined(OS_CHROMEOS) 94 #if defined(OS_CHROMEOS)
95 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h" 95 #include "chrome/browser/chromeos/extensions/input_method_api_factory.h"
96 #include "chrome/browser/chromeos/extensions/media_player_api.h" 96 #include "chrome/browser/chromeos/extensions/media_player_api.h"
97 #include "chrome/browser/chromeos/extensions/networking_private_api_factory.h"
97 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h" 98 #include "chrome/browser/extensions/api/input_ime/input_ime_api.h"
98 #if defined(FILE_MANAGER_EXTENSION) 99 #if defined(FILE_MANAGER_EXTENSION)
99 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h" 100 #include "chrome/browser/chromeos/extensions/file_browser_private_api_factory.h"
100 #endif 101 #endif
101 #endif 102 #endif
102 103
103 #if defined(USE_AURA) 104 #if defined(USE_AURA)
104 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h" 105 #include "chrome/browser/ui/gesture_prefs_observer_factory_aura.h"
105 #endif 106 #endif
106 107
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 #endif 298 #endif
298 FindBarStateFactory::GetInstance(); 299 FindBarStateFactory::GetInstance();
299 GAIAInfoUpdateServiceFactory::GetInstance(); 300 GAIAInfoUpdateServiceFactory::GetInstance();
300 #if defined(USE_AURA) 301 #if defined(USE_AURA)
301 GesturePrefsObserverFactoryAura::GetInstance(); 302 GesturePrefsObserverFactoryAura::GetInstance();
302 #endif 303 #endif
303 GlobalErrorServiceFactory::GetInstance(); 304 GlobalErrorServiceFactory::GetInstance();
304 GoogleURLTrackerFactory::GetInstance(); 305 GoogleURLTrackerFactory::GetInstance();
305 HistoryServiceFactory::GetInstance(); 306 HistoryServiceFactory::GetInstance();
306 MediaGalleriesPreferencesFactory::GetInstance(); 307 MediaGalleriesPreferencesFactory::GetInstance();
308 #if defined(OS_CHROMEOS)
309 chromeos::NetworkingPrivateAPIFactory::GetInstance();
310 #endif
307 NTPResourceCacheFactory::GetInstance(); 311 NTPResourceCacheFactory::GetInstance();
308 PasswordStoreFactory::GetInstance(); 312 PasswordStoreFactory::GetInstance();
309 PersonalDataManagerFactory::GetInstance(); 313 PersonalDataManagerFactory::GetInstance();
310 #if !defined(OS_ANDROID) 314 #if !defined(OS_ANDROID)
311 PinnedTabServiceFactory::GetInstance(); 315 PinnedTabServiceFactory::GetInstance();
312 #endif 316 #endif
313 #if defined(ENABLE_PLUGINS) 317 #if defined(ENABLE_PLUGINS)
314 PluginPrefsFactory::GetInstance(); 318 PluginPrefsFactory::GetInstance();
315 #endif 319 #endif
316 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS) 320 #if defined(ENABLE_CONFIGURATION_POLICY) && !defined(OS_CHROMEOS)
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 } 457 }
454 458
455 result.append("\n /* Toplevel profile */\n"); 459 result.append("\n /* Toplevel profile */\n");
456 result.append(" Profile [shape=box];\n"); 460 result.append(" Profile [shape=box];\n");
457 461
458 result.append("}\n"); 462 result.append("}\n");
459 return result; 463 return result;
460 } 464 }
461 465
462 #endif 466 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698