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

Side by Side Diff: chrome/browser/ui/webui/options/startup_pages_handler.cc

Issue 1191373002: Componentize AutocompleteController and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prep_builtin_provider_for_c14n
Patch Set: Rebase Created 5 years, 5 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
« no previous file with comments | « chrome/browser/ui/webui/options/startup_pages_handler.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/webui/options/startup_pages_handler.h" 5 #include "chrome/browser/ui/webui/options/startup_pages_handler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/prefs/pref_service.h" 9 #include "base/prefs/pref_service.h"
10 #include "chrome/browser/autocomplete/autocomplete_classifier.h"
11 #include "chrome/browser/autocomplete/autocomplete_controller.h"
12 #include "chrome/browser/autocomplete/chrome_autocomplete_provider_client.h" 10 #include "chrome/browser/autocomplete/chrome_autocomplete_provider_client.h"
13 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h" 11 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h"
14 #include "chrome/browser/chrome_notification_types.h" 12 #include "chrome/browser/chrome_notification_types.h"
15 #include "chrome/browser/custom_home_pages_table_model.h" 13 #include "chrome/browser/custom_home_pages_table_model.h"
16 #include "chrome/browser/prefs/session_startup_pref.h" 14 #include "chrome/browser/prefs/session_startup_pref.h"
17 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/search_engines/template_url_service_factory.h" 16 #include "chrome/browser/search_engines/template_url_service_factory.h"
19 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
20 #include "chrome/grit/generated_resources.h" 18 #include "chrome/grit/generated_resources.h"
21 #include "components/metrics/proto/omnibox_event.pb.h" 19 #include "components/metrics/proto/omnibox_event.pb.h"
20 #include "components/omnibox/autocomplete_classifier.h"
21 #include "components/omnibox/autocomplete_controller.h"
22 #include "components/omnibox/autocomplete_input.h" 22 #include "components/omnibox/autocomplete_input.h"
23 #include "components/omnibox/autocomplete_result.h" 23 #include "components/omnibox/autocomplete_result.h"
24 #include "components/url_fixer/url_fixer.h" 24 #include "components/url_fixer/url_fixer.h"
25 #include "content/public/browser/notification_details.h" 25 #include "content/public/browser/notification_details.h"
26 #include "content/public/browser/web_ui.h" 26 #include "content/public/browser/web_ui.h"
27 27
28 namespace options { 28 namespace options {
29 29
30 StartupPagesHandler::StartupPagesHandler() { 30 StartupPagesHandler::StartupPagesHandler() {
31 } 31 }
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 252
253 void StartupPagesHandler::OnResultChanged(bool default_match_changed) { 253 void StartupPagesHandler::OnResultChanged(bool default_match_changed) {
254 const AutocompleteResult& result = autocomplete_controller_->result(); 254 const AutocompleteResult& result = autocomplete_controller_->result();
255 base::ListValue suggestions; 255 base::ListValue suggestions;
256 OptionsUI::ProcessAutocompleteSuggestions(result, &suggestions); 256 OptionsUI::ProcessAutocompleteSuggestions(result, &suggestions);
257 web_ui()->CallJavascriptFunction( 257 web_ui()->CallJavascriptFunction(
258 "StartupOverlay.updateAutocompleteSuggestions", suggestions); 258 "StartupOverlay.updateAutocompleteSuggestions", suggestions);
259 } 259 }
260 260
261 } // namespace options 261 } // namespace options
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/startup_pages_handler.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698