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

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

Powered by Google App Engine
This is Rietveld 408576698