| OLD | NEW |
| 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 "chrome/browser/precache/precache_manager_factory.h" | 5 #include "chrome/browser/precache/precache_manager_factory.h" |
| 6 | 6 |
| 7 #include <memory> |
| 8 |
| 9 #include "base/files/file_path.h" |
| 7 #include "chrome/browser/history/history_service_factory.h" | 10 #include "chrome/browser/history/history_service_factory.h" |
| 8 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/sync/profile_sync_service_factory.h" | 12 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 10 #include "components/keyed_service/content/browser_context_dependency_manager.h" | 13 #include "components/keyed_service/content/browser_context_dependency_manager.h" |
| 11 #include "components/keyed_service/core/service_access_type.h" | 14 #include "components/keyed_service/core/service_access_type.h" |
| 12 #include "components/precache/content/precache_manager.h" | 15 #include "components/precache/content/precache_manager.h" |
| 16 #include "components/precache/core/precache_database.h" |
| 13 #include "content/public/browser/browser_context.h" | 17 #include "content/public/browser/browser_context.h" |
| 14 | 18 |
| 15 namespace precache { | 19 namespace precache { |
| 16 | 20 |
| 17 // static | 21 // static |
| 18 PrecacheManager* PrecacheManagerFactory::GetForBrowserContext( | 22 PrecacheManager* PrecacheManagerFactory::GetForBrowserContext( |
| 19 content::BrowserContext* browser_context) { | 23 content::BrowserContext* browser_context) { |
| 20 return static_cast<PrecacheManager*>( | 24 return static_cast<PrecacheManager*>( |
| 21 GetInstance()->GetServiceForBrowserContext(browser_context, true)); | 25 GetInstance()->GetServiceForBrowserContext(browser_context, true)); |
| 22 } | 26 } |
| 23 | 27 |
| 24 // static | 28 // static |
| 25 PrecacheManagerFactory* PrecacheManagerFactory::GetInstance() { | 29 PrecacheManagerFactory* PrecacheManagerFactory::GetInstance() { |
| 26 return base::Singleton<PrecacheManagerFactory>::get(); | 30 return base::Singleton<PrecacheManagerFactory>::get(); |
| 27 } | 31 } |
| 28 | 32 |
| 29 PrecacheManagerFactory::PrecacheManagerFactory() | 33 PrecacheManagerFactory::PrecacheManagerFactory() |
| 30 : BrowserContextKeyedServiceFactory( | 34 : BrowserContextKeyedServiceFactory( |
| 31 "PrecacheManager", | 35 "PrecacheManager", |
| 32 BrowserContextDependencyManager::GetInstance()) { | 36 BrowserContextDependencyManager::GetInstance()) { |
| 33 } | 37 } |
| 34 | 38 |
| 35 PrecacheManagerFactory::~PrecacheManagerFactory() { | 39 PrecacheManagerFactory::~PrecacheManagerFactory() { |
| 36 } | 40 } |
| 37 | 41 |
| 38 KeyedService* PrecacheManagerFactory::BuildServiceInstanceFor( | 42 KeyedService* PrecacheManagerFactory::BuildServiceInstanceFor( |
| 39 content::BrowserContext* browser_context) const { | 43 content::BrowserContext* browser_context) const { |
| 44 std::unique_ptr<PrecacheDatabase> precache_database( |
| 45 new PrecacheDatabase()); |
| 46 base::FilePath db_path(browser_context->GetPath().Append( |
| 47 base::FilePath(FILE_PATH_LITERAL("PrecacheDatabase")))); |
| 40 return new PrecacheManager( | 48 return new PrecacheManager( |
| 41 browser_context, | 49 browser_context, |
| 42 ProfileSyncServiceFactory::GetSyncServiceForBrowserContext( | 50 ProfileSyncServiceFactory::GetSyncServiceForBrowserContext( |
| 43 browser_context), | 51 browser_context), |
| 44 HistoryServiceFactory::GetForProfile( | 52 HistoryServiceFactory::GetForProfile( |
| 45 Profile::FromBrowserContext(browser_context), | 53 Profile::FromBrowserContext(browser_context), |
| 46 ServiceAccessType::IMPLICIT_ACCESS)); | 54 ServiceAccessType::IMPLICIT_ACCESS), |
| 55 db_path, std::move(precache_database)); |
| 47 } | 56 } |
| 48 | 57 |
| 49 } // namespace precache | 58 } // namespace precache |
| OLD | NEW |