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

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

Issue 10383240: This adds a webui overlay on the extensions page for showing what Extension keybindings are active.… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 #endif 185 #endif
186 ChromeURLDataManagerFactory::GetInstance(); 186 ChromeURLDataManagerFactory::GetInstance();
187 #if !defined(OS_ANDROID) 187 #if !defined(OS_ANDROID)
188 CloudPrintProxyServiceFactory::GetInstance(); 188 CloudPrintProxyServiceFactory::GetInstance();
189 #endif 189 #endif
190 CookieSettings::Factory::GetInstance(); 190 CookieSettings::Factory::GetInstance();
191 #if defined(ENABLE_NOTIFICATIONS) 191 #if defined(ENABLE_NOTIFICATIONS)
192 DesktopNotificationServiceFactory::GetInstance(); 192 DesktopNotificationServiceFactory::GetInstance();
193 #endif 193 #endif
194 DownloadServiceFactory::GetInstance(); 194 DownloadServiceFactory::GetInstance();
195 ExtensionCommandServiceFactory::GetInstance(); 195 extensions::ExtensionCommandServiceFactory::GetInstance();
196 extensions::SuggestedLinksRegistryFactory::GetInstance(); 196 extensions::SuggestedLinksRegistryFactory::GetInstance();
197 ExtensionSystemFactory::GetInstance(); 197 ExtensionSystemFactory::GetInstance();
198 FindBarStateFactory::GetInstance(); 198 FindBarStateFactory::GetInstance();
199 #if defined(USE_AURA) 199 #if defined(USE_AURA)
200 GesturePrefsObserverFactoryAura::GetInstance(); 200 GesturePrefsObserverFactoryAura::GetInstance();
201 #endif 201 #endif
202 GlobalErrorServiceFactory::GetInstance(); 202 GlobalErrorServiceFactory::GetInstance();
203 GoogleURLTrackerFactory::GetInstance(); 203 GoogleURLTrackerFactory::GetInstance();
204 NTPResourceCacheFactory::GetInstance(); 204 NTPResourceCacheFactory::GetInstance();
205 PasswordStoreFactory::GetInstance(); 205 PasswordStoreFactory::GetInstance();
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 } 340 }
341 341
342 result.append("\n /* Toplevel profile */\n"); 342 result.append("\n /* Toplevel profile */\n");
343 result.append(" Profile [shape=box];\n"); 343 result.append(" Profile [shape=box];\n");
344 344
345 result.append("}\n"); 345 result.append("}\n");
346 return result; 346 return result;
347 } 347 }
348 348
349 #endif 349 #endif
OLDNEW
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/resources/extensions/extension_command_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698