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

Side by Side Diff: apps/saved_files_service_factory.cc

Issue 2789253003: Add chrome/browser/apps/BUILD.gn and move Chrome-specific code there (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « apps/saved_files_service_factory.h ('k') | chrome/browser/BUILD.gn » ('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 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.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 SavedFilesService* SavedFilesServiceFactory::GetForBrowserContext(
15 content::BrowserContext* context) { 15 content::BrowserContext* context) {
16 return static_cast<SavedFilesService*>( 16 return static_cast<SavedFilesService*>(
17 GetInstance()->GetServiceForBrowserContext(context, true)); 17 GetInstance()->GetServiceForBrowserContext(context, true));
18 } 18 }
19 19
20 // static 20 // static
21 SavedFilesService* SavedFilesServiceFactory::GetForBrowserContextIfExists(
22 content::BrowserContext* context) {
23 return static_cast<SavedFilesService*>(
24 GetInstance()->GetServiceForBrowserContext(context, false));
25 }
26
27 // static
21 SavedFilesServiceFactory* SavedFilesServiceFactory::GetInstance() { 28 SavedFilesServiceFactory* SavedFilesServiceFactory::GetInstance() {
22 return base::Singleton<SavedFilesServiceFactory>::get(); 29 return base::Singleton<SavedFilesServiceFactory>::get();
23 } 30 }
24 31
25 SavedFilesServiceFactory::SavedFilesServiceFactory() 32 SavedFilesServiceFactory::SavedFilesServiceFactory()
26 : BrowserContextKeyedServiceFactory( 33 : BrowserContextKeyedServiceFactory(
27 "SavedFilesService", 34 "SavedFilesService",
28 BrowserContextDependencyManager::GetInstance()) {} 35 BrowserContextDependencyManager::GetInstance()) {}
29 36
30 SavedFilesServiceFactory::~SavedFilesServiceFactory() {} 37 SavedFilesServiceFactory::~SavedFilesServiceFactory() {}
31 38
32 KeyedService* SavedFilesServiceFactory::BuildServiceInstanceFor( 39 KeyedService* SavedFilesServiceFactory::BuildServiceInstanceFor(
33 content::BrowserContext* context) const { 40 content::BrowserContext* context) const {
34 return new SavedFilesService(context); 41 return new SavedFilesService(context);
35 } 42 }
36 43
37 } // namespace apps 44 } // namespace apps
OLDNEW
« no previous file with comments | « apps/saved_files_service_factory.h ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698