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

Side by Side Diff: chrome/browser/extensions/api/dial/dial_api_factory.cc

Issue 11444020: DIAL extension API skeleton. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: abc.... 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 | Annotate | Revision Log
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/dial/dial_api_factory.h"
6
7 #include "chrome/browser/extensions/api/dial/dial_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 scoped_refptr<DialAPI> DialAPIFactory::GetForProfile(Profile* profile) {
15 return static_cast<DialAPI*>(
16 GetInstance()->GetServiceForProfile(profile, true).get());
17 }
18
19 // static
20 DialAPIFactory* DialAPIFactory::GetInstance() {
21 return Singleton<DialAPIFactory>::get();
22 }
23
24 DialAPIFactory::DialAPIFactory() : RefcountedProfileKeyedServiceFactory(
25 "DialAPI", ProfileDependencyManager::GetInstance()) {
26 DependsOn(ExtensionSystemFactory::GetInstance());
27 }
28
29 DialAPIFactory::~DialAPIFactory() {
30 }
31
32 scoped_refptr<RefcountedProfileKeyedService>
33 DialAPIFactory::BuildServiceInstanceFor(Profile* profile) const {
34 return scoped_refptr<DialAPI>(new DialAPI(profile));
35 }
36
37 bool DialAPIFactory::ServiceRedirectedInIncognito() const {
38 return false;
39 }
40
41 bool DialAPIFactory::ServiceIsCreatedWithProfile() const {
42 return true;
43 }
44
45 bool DialAPIFactory::ServiceIsNULLWhileTesting() const {
46 return true;
47 }
48
49 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/dial/dial_api_factory.h ('k') | chrome/browser/extensions/api/dial/dial_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698