| 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 "components/browser_sync/browser/profile_sync_service.h" | 8 #include "components/browser_sync/browser/profile_sync_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" |
| 11 #include "components/prefs/pref_service.h" | 11 #include "components/prefs/pref_service.h" |
| 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 13 #include "components/signin/core/browser/signin_manager.h" | 13 #include "components/signin/core/browser/signin_manager.h" |
| 14 #include "components/sync_driver/sync_service.h" | 14 #include "components/sync_driver/sync_service.h" |
| 15 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 15 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" | 16 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" |
| 16 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 17 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 17 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 18 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 18 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 19 #include "net/url_request/url_request_context_getter.h" | 19 #include "net/url_request/url_request_context_getter.h" |
| 20 | 20 |
| 21 namespace ios { | 21 namespace ios { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 // Returns true if the user is signed-in and full history sync is enabled, | 24 // Returns true if the user is signed-in and full history sync is enabled, |
| 25 // false otherwise. | 25 // false otherwise. |
| 26 bool IsHistorySyncEnabled(ios::ChromeBrowserState* browser_state) { | 26 bool IsHistorySyncEnabled(ios::ChromeBrowserState* browser_state) { |
| 27 sync_driver::SyncService* sync_service = | 27 sync_driver::SyncService* sync_service = |
| 28 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); | 28 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |