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

Side by Side Diff: apps/saved_files_service_impl_factory.cc

Issue 2951003002: SavedFilesService interface in //extensions (Closed)
Patch Set: cleanup Created 3 years, 6 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "apps/saved_files_service_factory.h" 5 #include "apps/saved_files_service_factory.h"
6 6
7 #include "apps/saved_files_service.h" 7 #include "apps/saved_files_service_impl.h"
8 #include "components/keyed_service/content/browser_context_dependency_manager.h" 8 #include "components/keyed_service/content/browser_context_dependency_manager.h"
9 #include "content/public/browser/browser_context.h" 9 #include "content/public/browser/browser_context.h"
10 10
11 namespace apps { 11 namespace apps {
12 12
13 // static 13 // static
14 SavedFilesService* SavedFilesServiceFactory::GetForBrowserContext( 14 SavedFilesServiceImpl* SavedFilesServiceImplFactory::GetForBrowserContext(
15 content::BrowserContext* context) { 15 content::BrowserContext* context) {
16 return static_cast<SavedFilesService*>( 16 return static_cast<SavedFilesServiceImpl*>(
17 GetInstance()->GetServiceForBrowserContext(context, true)); 17 GetInstance()->GetServiceForBrowserContext(context, true));
18 } 18 }
19 19
20 // static 20 // static
21 SavedFilesService* SavedFilesServiceFactory::GetForBrowserContextIfExists( 21 SavedFilesServiceImpl*
22 SavedFilesServiceImplFactory::GetForBrowserContextIfExists(
22 content::BrowserContext* context) { 23 content::BrowserContext* context) {
23 return static_cast<SavedFilesService*>( 24 return static_cast<SavedFilesServiceImpl*>(
24 GetInstance()->GetServiceForBrowserContext(context, false)); 25 GetInstance()->GetServiceForBrowserContext(context, false));
25 } 26 }
26 27
27 // static 28 // static
28 SavedFilesServiceFactory* SavedFilesServiceFactory::GetInstance() { 29 SavedFilesServiceImplFactory* SavedFilesServiceImplFactory::GetInstance() {
29 return base::Singleton<SavedFilesServiceFactory>::get(); 30 return base::Singleton<SavedFilesServiceImplFactory>::get();
30 } 31 }
31 32
32 SavedFilesServiceFactory::SavedFilesServiceFactory() 33 SavedFilesServiceImplFactory::SavedFilesServiceImplFactory()
33 : BrowserContextKeyedServiceFactory( 34 : BrowserContextKeyedServiceFactory(
34 "SavedFilesService", 35 "SavedFilesServiceImpl",
35 BrowserContextDependencyManager::GetInstance()) {} 36 BrowserContextDependencyManager::GetInstance()) {}
36 37
37 SavedFilesServiceFactory::~SavedFilesServiceFactory() {} 38 SavedFilesServiceImplFactory::~SavedFilesServiceImplFactory() {}
38 39
39 KeyedService* SavedFilesServiceFactory::BuildServiceInstanceFor( 40 KeyedService* SavedFilesServiceImplFactory::BuildServiceInstanceFor(
40 content::BrowserContext* context) const { 41 content::BrowserContext* context) const {
41 return new SavedFilesService(context); 42 return new SavedFilesServiceImpl(context);
42 } 43 }
43 44
44 } // namespace apps 45 } // namespace apps
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698