Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: ios/chrome/browser/search_engines/template_url_service_factory.cc

Issue 1984353002: [iOS/GN] Fix and enable "gn check" for "//ios/*" and "//ios_internal/*". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix "--check" after https://codereview.chromium.org/1956113002/ Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 23
24 #if defined(ENABLE_RLZ) 24 #if defined(ENABLE_RLZ)
25 #include "components/rlz/rlz_tracker.h" 25 #include "components/rlz/rlz_tracker.h" // nogncheck
26 #endif 26 #endif
27 27
28 namespace ios { 28 namespace ios {
29 namespace { 29 namespace {
30 30
31 base::Closure GetDefaultSearchProviderChangedCallback() { 31 base::Closure GetDefaultSearchProviderChangedCallback() {
32 #if defined(ENABLE_RLZ) 32 #if defined(ENABLE_RLZ)
33 return base::Bind(base::IgnoreResult(&rlz::RLZTracker::RecordProductEvent), 33 return base::Bind(base::IgnoreResult(&rlz::RLZTracker::RecordProductEvent),
34 rlz_lib::CHROME, rlz::RLZTracker::ChromeOmnibox(), 34 rlz_lib::CHROME, rlz::RLZTracker::ChromeOmnibox(),
35 rlz_lib::SET_TO_GOOGLE); 35 rlz_lib::SET_TO_GOOGLE);
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse( 101 web::BrowserState* TemplateURLServiceFactory::GetBrowserStateToUse(
102 web::BrowserState* context) const { 102 web::BrowserState* context) const {
103 return GetBrowserStateRedirectedInIncognito(context); 103 return GetBrowserStateRedirectedInIncognito(context);
104 } 104 }
105 105
106 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const { 106 bool TemplateURLServiceFactory::ServiceIsNULLWhileTesting() const {
107 return true; 107 return true;
108 } 108 }
109 109
110 } // namespace ios 110 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/ios_chrome_main_parts.mm ('k') | ios/chrome/browser/search_engines/ui_thread_search_terms_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698