| 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/web_data_service_factory.h" | 5 #include "ios/chrome/browser/web_data_service_factory.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 12 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| 13 #include "components/keyed_service/core/service_access_type.h" | 13 #include "components/keyed_service/core/service_access_type.h" |
| 14 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 14 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 15 #include "components/search_engines/keyword_web_data_service.h" | 15 #include "components/search_engines/keyword_web_data_service.h" |
| 16 #include "components/signin/core/browser/webdata/token_web_data.h" | 16 #include "components/signin/core/browser/webdata/token_web_data.h" |
| 17 #include "components/webdata_services/web_data_service_wrapper.h" | 17 #include "components/webdata_services/web_data_service_wrapper.h" |
| 18 #include "ios/chrome/browser/application_context.h" | 18 #include "ios/chrome/browser/application_context.h" |
| 19 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 19 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 20 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 20 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 21 #include "ios/chrome/browser/sync/glue/sync_start_util.h" | 21 #include "ios/chrome/browser/sync/glue/sync_start_util.h" |
| 22 #include "ios/web/public/web_thread.h" | 22 #include "ios/web/public/web_thread.h" |
| 23 | 23 |
| 24 namespace ios { | 24 namespace ios { |
| 25 namespace { | 25 namespace { |
| 26 | 26 |
| 27 void DoNothingOnErrorCallback(WebDataServiceWrapper::ErrorType error_type, | 27 void DoNothingOnErrorCallback(WebDataServiceWrapper::ErrorType error_type, |
| 28 sql::InitStatus status) { | 28 sql::InitStatus status, |
| 29 } | 29 const std::string& diagnostics) {} |
| 30 | 30 |
| 31 } // namespace | 31 } // namespace |
| 32 | 32 |
| 33 // static | 33 // static |
| 34 WebDataServiceWrapper* WebDataServiceFactory::GetForBrowserState( | 34 WebDataServiceWrapper* WebDataServiceFactory::GetForBrowserState( |
| 35 ios::ChromeBrowserState* browser_state, | 35 ios::ChromeBrowserState* browser_state, |
| 36 ServiceAccessType access_type) { | 36 ServiceAccessType access_type) { |
| 37 DCHECK(access_type == ServiceAccessType::EXPLICIT_ACCESS || | 37 DCHECK(access_type == ServiceAccessType::EXPLICIT_ACCESS || |
| 38 !browser_state->IsOffTheRecord()); | 38 !browser_state->IsOffTheRecord()); |
| 39 return static_cast<WebDataServiceWrapper*>( | 39 return static_cast<WebDataServiceWrapper*>( |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 web::BrowserState* WebDataServiceFactory::GetBrowserStateToUse( | 108 web::BrowserState* WebDataServiceFactory::GetBrowserStateToUse( |
| 109 web::BrowserState* context) const { | 109 web::BrowserState* context) const { |
| 110 return GetBrowserStateRedirectedInIncognito(context); | 110 return GetBrowserStateRedirectedInIncognito(context); |
| 111 } | 111 } |
| 112 | 112 |
| 113 bool WebDataServiceFactory::ServiceIsNULLWhileTesting() const { | 113 bool WebDataServiceFactory::ServiceIsNULLWhileTesting() const { |
| 114 return true; | 114 return true; |
| 115 } | 115 } |
| 116 | 116 |
| 117 } // namespace ios | 117 } // namespace ios |
| OLD | NEW |