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

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

Issue 10626007: Move ExtensionSystem into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Master merge; moved class declaration Created 8 years, 5 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
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698