| 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/profile_sync_service.h" | 9 #include "components/browser_sync/profile_sync_service.h" |
| 10 #include "components/history/core/browser/web_history_service.h" | 10 #include "components/history/core/browser/web_history_service.h" |
| 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 12 #include "components/prefs/pref_service.h" | 12 #include "components/prefs/pref_service.h" |
| 13 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 13 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 14 #include "components/signin/core/browser/signin_manager.h" | 14 #include "components/signin/core/browser/signin_manager.h" |
| 15 #include "components/sync/driver/sync_service.h" | 15 #include "components/sync/driver/sync_service.h" |
| 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 17 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" | 17 #include "ios/chrome/browser/signin/oauth2_token_service_factory.h" |
| 18 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 18 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 19 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 19 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 20 #include "net/url_request/url_request_context_getter.h" | 20 #include "net/url_request/url_request_context_getter.h" |
| 21 | 21 |
| 22 namespace ios { | 22 namespace ios { |
| 23 namespace { | 23 namespace { |
| 24 | 24 |
| 25 // Returns true if the user is signed-in and full history sync is enabled, | 25 // Returns true if the user is signed-in and full history sync is enabled, |
| 26 // false otherwise. | 26 // false otherwise. |
| 27 bool IsHistorySyncEnabled(ios::ChromeBrowserState* browser_state) { | 27 bool IsHistorySyncEnabled(ios::ChromeBrowserState* browser_state) { |
| 28 sync_driver::SyncService* sync_service = | 28 syncer::SyncService* sync_service = |
| 29 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); | 29 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state); |
| 30 return sync_service && sync_service->IsSyncActive() && | 30 return sync_service && sync_service->IsSyncActive() && |
| 31 sync_service->GetActiveDataTypes().Has( | 31 sync_service->GetActiveDataTypes().Has( |
| 32 syncer::HISTORY_DELETE_DIRECTIVES); | 32 syncer::HISTORY_DELETE_DIRECTIVES); |
| 33 } | 33 } |
| 34 | 34 |
| 35 } // namespace | 35 } // namespace |
| 36 | 36 |
| 37 // static | 37 // static |
| 38 history::WebHistoryService* WebHistoryServiceFactory::GetForBrowserState( | 38 history::WebHistoryService* WebHistoryServiceFactory::GetForBrowserState( |
| (...skipping 28 matching lines...) Expand all Loading... |
| 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::MakeUnique<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 |