| 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/search_engines/template_url_service_factory.h" | 5 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "components/keyed_service/core/service_access_type.h" | 10 #include "components/keyed_service/core/service_access_type.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/search_engines/default_search_manager.h" | 12 #include "components/search_engines/default_search_manager.h" |
| 13 #include "components/search_engines/template_url_service.h" | 13 #include "components/search_engines/template_url_service.h" |
| 14 #include "ios/chrome/browser/application_context.h" | 14 #include "ios/chrome/browser/application_context.h" |
| 15 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 15 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 16 #include "ios/chrome/browser/google/google_url_tracker_factory.h" | 17 #include "ios/chrome/browser/google/google_url_tracker_factory.h" |
| 17 #include "ios/chrome/browser/history/history_service_factory.h" | 18 #include "ios/chrome/browser/history/history_service_factory.h" |
| 18 #include "ios/chrome/browser/search_engines/template_url_service_client_impl.h" | 19 #include "ios/chrome/browser/search_engines/template_url_service_client_impl.h" |
| 19 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h" | 20 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h" |
| 20 #include "ios/chrome/browser/web_data_service_factory.h" | 21 #include "ios/chrome/browser/web_data_service_factory.h" |
| 21 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 22 | 22 |
| 23 #if defined(ENABLE_RLZ) | 23 #if defined(ENABLE_RLZ) |
| 24 #include "components/rlz/rlz_tracker.h" | 24 #include "components/rlz/rlz_tracker.h" |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 namespace ios { | 27 namespace ios { |
| 28 namespace { | 28 namespace { |
| 29 | 29 |
| 30 base::Closure GetDefaultSearchProviderChangedCallback() { | 30 base::Closure GetDefaultSearchProviderChangedCallback() { |
| 31 #if defined(ENABLE_RLZ) | 31 #if defined(ENABLE_RLZ) |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse( | 98 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse( |
| 99 web::BrowserState* context) const { | 99 web::BrowserState* context) const { |
| 100 return GetBrowserStateRedirectedInIncognito(context); | 100 return GetBrowserStateRedirectedInIncognito(context); |
| 101 } | 101 } |
| 102 | 102 |
| 103 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const { | 103 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const { |
| 104 return true; | 104 return true; |
| 105 } | 105 } |
| 106 | 106 |
| 107 } // namespace ios | 107 } // namespace ios |
| OLD | NEW |