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

Side by Side Diff: chrome/browser/extensions/api/developer_private/developer_private_api_factory.cc

Issue 11428116: First few API implementation of AppsDebuggerPrivate. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixing build on windows Created 8 years 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/developer_private/developer_private_api_ factory.h"
6
7 #include "chrome/browser/extensions/api/developer_private/developer_private_api. 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 DeveloperPrivateAPI* DeveloperPrivateAPIFactory::GetForProfile(
15 Profile* profile) {
16 return static_cast<DeveloperPrivateAPI*>(
17 GetInstance()->GetServiceForProfile(profile, true));
18 }
19
20 // static
21 DeveloperPrivateAPIFactory* DeveloperPrivateAPIFactory::GetInstance() {
22 return Singleton<DeveloperPrivateAPIFactory>::get();
23 }
24
25 DeveloperPrivateAPIFactory::DeveloperPrivateAPIFactory()
26 : ProfileKeyedServiceFactory("DeveloperPrivateAPI",
27 ProfileDependencyManager::GetInstance()) {
28 DependsOn(ExtensionSystemFactory::GetInstance());
29 }
30
31 DeveloperPrivateAPIFactory::~DeveloperPrivateAPIFactory() {
32 }
33
34 ProfileKeyedService* DeveloperPrivateAPIFactory::BuildServiceInstanceFor(
35 Profile* profile) const {
36 return new DeveloperPrivateAPI(profile);
37 }
38
39 bool DeveloperPrivateAPIFactory::ServiceRedirectedInIncognito() const {
40 return true;
41 }
42
43 bool DeveloperPrivateAPIFactory::ServiceIsCreatedWithProfile() const {
44 return true;
45 }
46
47 bool DeveloperPrivateAPIFactory::ServiceIsNULLWhileTesting() const {
48 return true;
49 }
50
51 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698