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

Side by Side Diff: chrome/browser/ui/search/instant_controller.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 "chrome/browser/ui/search/instant_controller.h" 5 #include "chrome/browser/ui/search/instant_controller.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/prefs/pref_service.h"
11 #include "base/strings/stringprintf.h" 10 #include "base/strings/stringprintf.h"
12 #include "chrome/browser/chrome_notification_types.h" 11 #include "chrome/browser/chrome_notification_types.h"
13 #include "chrome/browser/platform_util.h" 12 #include "chrome/browser/platform_util.h"
14 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
15 #include "chrome/browser/search/instant_service.h" 14 #include "chrome/browser/search/instant_service.h"
16 #include "chrome/browser/search/instant_service_factory.h" 15 #include "chrome/browser/search/instant_service_factory.h"
17 #include "chrome/browser/search/search.h" 16 #include "chrome/browser/search/search.h"
18 #include "chrome/browser/search_engines/template_url_service_factory.h" 17 #include "chrome/browser/search_engines/template_url_service_factory.h"
19 #include "chrome/browser/ui/browser_instant_controller.h" 18 #include "chrome/browser/ui/browser_instant_controller.h"
20 #include "chrome/browser/ui/search/instant_tab.h" 19 #include "chrome/browser/ui/search/instant_tab.h"
21 #include "chrome/browser/ui/search/search_tab_helper.h" 20 #include "chrome/browser/ui/search/search_tab_helper.h"
22 #include "chrome/common/chrome_switches.h" 21 #include "chrome/common/chrome_switches.h"
23 #include "chrome/common/search_urls.h" 22 #include "chrome/common/search_urls.h"
24 #include "chrome/common/url_constants.h" 23 #include "chrome/common/url_constants.h"
24 #include "components/prefs/pref_service.h"
25 #include "components/search_engines/template_url_service.h" 25 #include "components/search_engines/template_url_service.h"
26 #include "components/sessions/core/serialized_navigation_entry.h" 26 #include "components/sessions/core/serialized_navigation_entry.h"
27 #include "content/public/browser/navigation_entry.h" 27 #include "content/public/browser/navigation_entry.h"
28 #include "content/public/browser/notification_service.h" 28 #include "content/public/browser/notification_service.h"
29 #include "content/public/browser/render_process_host.h" 29 #include "content/public/browser/render_process_host.h"
30 #include "content/public/browser/render_widget_host_view.h" 30 #include "content/public/browser/render_widget_host_view.h"
31 #include "content/public/browser/web_contents.h" 31 #include "content/public/browser/web_contents.h"
32 #include "net/base/escape.h" 32 #include "net/base/escape.h"
33 #include "net/base/network_change_notifier.h" 33 #include "net/base/network_change_notifier.h"
34 #include "url/gurl.h" 34 #include "url/gurl.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 if (instant_service) { 192 if (instant_service) {
193 instant_service->UpdateThemeInfo(); 193 instant_service->UpdateThemeInfo();
194 instant_service->UpdateMostVisitedItemsInfo(); 194 instant_service->UpdateMostVisitedItemsInfo();
195 } 195 }
196 } 196 }
197 } 197 }
198 198
199 InstantService* InstantController::GetInstantService() const { 199 InstantService* InstantController::GetInstantService() const {
200 return InstantServiceFactory::GetForProfile(profile()); 200 return InstantServiceFactory::GetForProfile(profile());
201 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698