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/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
11 #include "components/keyed_service/core/service_access_type.h" | 11 #include "components/keyed_service/core/service_access_type.h" |
12 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 12 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
13 #include "components/search_engines/default_search_manager.h" | 13 #include "components/search_engines/default_search_manager.h" |
14 #include "components/search_engines/template_url_service.h" | 14 #include "components/search_engines/template_url_service.h" |
15 #include "ios/chrome/browser/application_context.h" | 15 #include "ios/chrome/browser/application_context.h" |
16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 16 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
17 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" | 17 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
18 #include "ios/chrome/browser/google/google_url_tracker_factory.h" | 18 #include "ios/chrome/browser/google/google_url_tracker_factory.h" |
19 #include "ios/chrome/browser/history/history_service_factory.h" | 19 #include "ios/chrome/browser/history/history_service_factory.h" |
20 #include "ios/chrome/browser/search_engines/template_url_service_client_impl.h" | 20 #include "ios/chrome/browser/search_engines/template_url_service_client_impl.h" |
21 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h" | 21 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h" |
22 #include "ios/chrome/browser/web_data_service_factory.h" | 22 #include "ios/chrome/browser/web_data_service_factory.h" |
| 23 #include "rlz/features/features.h" |
23 | 24 |
24 #if defined(ENABLE_RLZ) | 25 #if BUILDFLAG(ENABLE_RLZ) |
25 #include "components/rlz/rlz_tracker.h" // nogncheck | 26 #include "components/rlz/rlz_tracker.h" // nogncheck |
26 #endif | 27 #endif |
27 | 28 |
28 namespace ios { | 29 namespace ios { |
29 namespace { | 30 namespace { |
30 | 31 |
31 base::Closure GetDefaultSearchProviderChangedCallback() { | 32 base::Closure GetDefaultSearchProviderChangedCallback() { |
32 #if defined(ENABLE_RLZ) | 33 #if BUILDFLAG(ENABLE_RLZ) |
33 return base::Bind(base::IgnoreResult(&rlz::RLZTracker::RecordProductEvent), | 34 return base::Bind(base::IgnoreResult(&rlz::RLZTracker::RecordProductEvent), |
34 rlz_lib::CHROME, rlz::RLZTracker::ChromeOmnibox(), | 35 rlz_lib::CHROME, rlz::RLZTracker::ChromeOmnibox(), |
35 rlz_lib::SET_TO_GOOGLE); | 36 rlz_lib::SET_TO_GOOGLE); |
36 #else | 37 #else |
37 return base::Closure(); | 38 return base::Closure(); |
38 #endif | 39 #endif |
39 } | 40 } |
40 | 41 |
41 std::unique_ptr<KeyedService> BuildTemplateURLService( | 42 std::unique_ptr<KeyedService> BuildTemplateURLService( |
42 web::BrowserState* context) { | 43 web::BrowserState* context) { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse( | 102 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse( |
102 web::BrowserState* context) const { | 103 web::BrowserState* context) const { |
103 return GetBrowserStateRedirectedInIncognito(context); | 104 return GetBrowserStateRedirectedInIncognito(context); |
104 } | 105 } |
105 | 106 |
106 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const { | 107 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const { |
107 return true; | 108 return true; |
108 } | 109 } |
109 | 110 |
110 } // namespace ios | 111 } // namespace ios |
OLD | NEW |