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

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

Issue 12378037: Move apps_shortcut_manager into src/apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 9 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
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
11 #include "apps/app_restore_service_factory.h" 11 #include "apps/app_restore_service_factory.h"
12 #include "apps/shortcut_manager_factory.h"
12 #include "chrome/browser/autofill/personal_data_manager_factory.h" 13 #include "chrome/browser/autofill/personal_data_manager_factory.h"
13 #include "chrome/browser/background/background_contents_service_factory.h" 14 #include "chrome/browser/background/background_contents_service_factory.h"
14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 15 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
15 #include "chrome/browser/content_settings/cookie_settings.h" 16 #include "chrome/browser/content_settings/cookie_settings.h"
16 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" 17 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
17 #include "chrome/browser/download/download_service_factory.h" 18 #include "chrome/browser/download/download_service_factory.h"
18 #include "chrome/browser/extensions/activity_log.h" 19 #include "chrome/browser/extensions/activity_log.h"
19 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h" 20 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h"
20 #include "chrome/browser/extensions/api/bookmarks/bookmarks_api.h" 21 #include "chrome/browser/extensions/api/bookmarks/bookmarks_api.h"
21 #include "chrome/browser/extensions/api/commands/command_service.h" 22 #include "chrome/browser/extensions/api/commands/command_service.h"
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 #if defined(ENABLE_PRINTING) 256 #if defined(ENABLE_PRINTING)
256 CloudPrintProxyServiceFactory::GetInstance(); 257 CloudPrintProxyServiceFactory::GetInstance();
257 #endif 258 #endif
258 CookieSettings::Factory::GetInstance(); 259 CookieSettings::Factory::GetInstance();
259 #if defined(ENABLE_NOTIFICATIONS) 260 #if defined(ENABLE_NOTIFICATIONS)
260 DesktopNotificationServiceFactory::GetInstance(); 261 DesktopNotificationServiceFactory::GetInstance();
261 #endif 262 #endif
262 DownloadServiceFactory::GetInstance(); 263 DownloadServiceFactory::GetInstance();
263 #if defined(ENABLE_EXTENSIONS) 264 #if defined(ENABLE_EXTENSIONS)
264 apps::AppRestoreServiceFactory::GetInstance(); 265 apps::AppRestoreServiceFactory::GetInstance();
266 apps::ShortcutManagerFactory::GetInstance();
265 extensions::ActivityLogFactory::GetInstance(); 267 extensions::ActivityLogFactory::GetInstance();
266 extensions::BookmarksAPI::GetFactoryInstance(); 268 extensions::BookmarksAPI::GetFactoryInstance();
267 extensions::BluetoothAPIFactory::GetInstance(); 269 extensions::BluetoothAPIFactory::GetInstance();
268 extensions::CommandService::GetFactoryInstance(); 270 extensions::CommandService::GetFactoryInstance();
269 extensions::CookiesAPI::GetFactoryInstance(); 271 extensions::CookiesAPI::GetFactoryInstance();
270 extensions::CSPParser::GetFactoryInstance(); 272 extensions::CSPParser::GetFactoryInstance();
271 extensions::DialAPIFactory::GetInstance(); 273 extensions::DialAPIFactory::GetInstance();
272 extensions::ExtensionActionAPI::GetFactoryInstance(); 274 extensions::ExtensionActionAPI::GetFactoryInstance();
273 extensions::ExtensionSystemFactory::GetInstance(); 275 extensions::ExtensionSystemFactory::GetInstance();
274 extensions::FileHandlersAPI::GetFactoryInstance(); 276 extensions::FileHandlersAPI::GetFactoryInstance();
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 } 479 }
478 480
479 result.append("\n /* Toplevel profile */\n"); 481 result.append("\n /* Toplevel profile */\n");
480 result.append(" Profile [shape=box];\n"); 482 result.append(" Profile [shape=box];\n");
481 483
482 result.append("}\n"); 484 result.append("}\n");
483 return result; 485 return result;
484 } 486 }
485 487
486 #endif 488 #endif
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698