| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "ios/chrome/browser/history/web_history_service_factory.h" | 5 #include "ios/chrome/browser/history/web_history_service_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "components/history/core/browser/web_history_service.h" | 9 #include "components/history/core/browser/web_history_service.h" |
| 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 // signed into sync, or if web history is not enabled. | 39 // signed into sync, or if web history is not enabled. |
| 40 if (!IsHistorySyncEnabled(browser_state)) | 40 if (!IsHistorySyncEnabled(browser_state)) |
| 41 return nullptr; | 41 return nullptr; |
| 42 | 42 |
| 43 return static_cast<history::WebHistoryService*>( | 43 return static_cast<history::WebHistoryService*>( |
| 44 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 44 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 45 } | 45 } |
| 46 | 46 |
| 47 // static | 47 // static |
| 48 WebHistoryServiceFactory* WebHistoryServiceFactory::GetInstance() { | 48 WebHistoryServiceFactory* WebHistoryServiceFactory::GetInstance() { |
| 49 return Singleton<WebHistoryServiceFactory>::get(); | 49 return base::Singleton<WebHistoryServiceFactory>::get(); |
| 50 } | 50 } |
| 51 | 51 |
| 52 WebHistoryServiceFactory::WebHistoryServiceFactory() | 52 WebHistoryServiceFactory::WebHistoryServiceFactory() |
| 53 : BrowserStateKeyedServiceFactory( | 53 : BrowserStateKeyedServiceFactory( |
| 54 "WebHistoryService", | 54 "WebHistoryService", |
| 55 BrowserStateDependencyManager::GetInstance()) { | 55 BrowserStateDependencyManager::GetInstance()) { |
| 56 ios::KeyedServiceProvider* provider = ios::GetKeyedServiceProvider(); | 56 ios::KeyedServiceProvider* provider = ios::GetKeyedServiceProvider(); |
| 57 DependsOn(provider->GetSyncServiceFactory()); | 57 DependsOn(provider->GetSyncServiceFactory()); |
| 58 DependsOn(OAuth2TokenServiceFactory::GetInstance()); | 58 DependsOn(OAuth2TokenServiceFactory::GetInstance()); |
| 59 DependsOn(ios::SigninManagerFactory::GetInstance()); | 59 DependsOn(ios::SigninManagerFactory::GetInstance()); |
| 60 } | 60 } |
| 61 | 61 |
| 62 WebHistoryServiceFactory::~WebHistoryServiceFactory() { | 62 WebHistoryServiceFactory::~WebHistoryServiceFactory() { |
| 63 } | 63 } |
| 64 | 64 |
| 65 scoped_ptr<KeyedService> WebHistoryServiceFactory::BuildServiceInstanceFor( | 65 scoped_ptr<KeyedService> WebHistoryServiceFactory::BuildServiceInstanceFor( |
| 66 web::BrowserState* context) const { | 66 web::BrowserState* context) const { |
| 67 ios::ChromeBrowserState* browser_state = | 67 ios::ChromeBrowserState* browser_state = |
| 68 ios::ChromeBrowserState::FromBrowserState(context); | 68 ios::ChromeBrowserState::FromBrowserState(context); |
| 69 return make_scoped_ptr(new history::WebHistoryService( | 69 return make_scoped_ptr(new history::WebHistoryService( |
| 70 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), | 70 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), |
| 71 ios::SigninManagerFactory::GetForBrowserState(browser_state), | 71 ios::SigninManagerFactory::GetForBrowserState(browser_state), |
| 72 browser_state->GetRequestContext())); | 72 browser_state->GetRequestContext())); |
| 73 } | 73 } |
| 74 | 74 |
| 75 } // namespace ios | 75 } // namespace ios |
| OLD | NEW |