| 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/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "components/browser_sync/browser/profile_sync_service.h" | 9 #include "components/browser_sync/browser/profile_sync_service.h" |
| 10 #include "components/history/core/browser/web_history_service.h" | 10 #include "components/history/core/browser/web_history_service.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 DependsOn(ios::SigninManagerFactory::GetInstance()); | 60 DependsOn(ios::SigninManagerFactory::GetInstance()); |
| 61 } | 61 } |
| 62 | 62 |
| 63 WebHistoryServiceFactory::~WebHistoryServiceFactory() { | 63 WebHistoryServiceFactory::~WebHistoryServiceFactory() { |
| 64 } | 64 } |
| 65 | 65 |
| 66 std::unique_ptr<KeyedService> WebHistoryServiceFactory::BuildServiceInstanceFor( | 66 std::unique_ptr<KeyedService> WebHistoryServiceFactory::BuildServiceInstanceFor( |
| 67 web::BrowserState* context) const { | 67 web::BrowserState* context) const { |
| 68 ios::ChromeBrowserState* browser_state = | 68 ios::ChromeBrowserState* browser_state = |
| 69 ios::ChromeBrowserState::FromBrowserState(context); | 69 ios::ChromeBrowserState::FromBrowserState(context); |
| 70 return base::WrapUnique(new history::WebHistoryService( | 70 return base::MakeUnique<history::WebHistoryService>( |
| 71 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), | 71 OAuth2TokenServiceFactory::GetForBrowserState(browser_state), |
| 72 ios::SigninManagerFactory::GetForBrowserState(browser_state), | 72 ios::SigninManagerFactory::GetForBrowserState(browser_state), |
| 73 browser_state->GetRequestContext())); | 73 browser_state->GetRequestContext()); |
| 74 } | 74 } |
| 75 | 75 |
| 76 } // namespace ios | 76 } // namespace ios |
| OLD | NEW |