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

Side by Side Diff: chrome/browser/extensions/api/commands/command_service_factory.cc

Issue 11820041: Remove profile-keyed factory boilerplates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/extensions/api/commands/command_service_factory.h"
6
7 #include "chrome/browser/extensions/api/commands/command_service.h"
8 #include "chrome/browser/extensions/extension_system_factory.h"
9 #include "chrome/browser/profiles/profile_dependency_manager.h"
10
11 namespace extensions {
12
13 // static
14 CommandService* CommandServiceFactory::GetForProfile(
15 Profile* profile) {
16 return static_cast<CommandService*>(
17 GetInstance()->GetServiceForProfile(profile, true));
18 }
19
20 // static
21 CommandServiceFactory* CommandServiceFactory::GetInstance() {
22 return Singleton<CommandServiceFactory>::get();
23 }
24
25 bool CommandServiceFactory::ServiceIsCreatedWithProfile() const {
26 return true;
27 }
28
29 CommandServiceFactory::CommandServiceFactory()
30 : ProfileKeyedServiceFactory("CommandService",
31 ProfileDependencyManager::GetInstance()) {
32 DependsOn(ExtensionSystemFactory::GetInstance());
33 }
34
35 CommandServiceFactory::~CommandServiceFactory() {
36 }
37
38 ProfileKeyedService* CommandServiceFactory::BuildServiceInstanceFor(
39 Profile* profile) const {
40 return new CommandService(profile);
41 }
42
43 bool CommandServiceFactory::ServiceRedirectedInIncognito() const {
44 return true;
45 }
46
47 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/commands/command_service_factory.h ('k') | chrome/browser/extensions/api/commands/commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698