OLD | NEW |
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/autocomplete/zero_suggest_provider.h" | 5 #include "chrome/browser/autocomplete/zero_suggest_provider.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/i18n/case_conversion.h" | 8 #include "base/i18n/case_conversion.h" |
9 #include "base/json/json_string_value_serializer.h" | 9 #include "base/json/json_string_value_serializer.h" |
10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
11 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "base/string_util.h" | 13 #include "base/strings/string_util.h" |
14 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/autocomplete/autocomplete_input.h" | 16 #include "chrome/browser/autocomplete/autocomplete_input.h" |
17 #include "chrome/browser/autocomplete/autocomplete_match.h" | 17 #include "chrome/browser/autocomplete/autocomplete_match.h" |
18 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" | 18 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" |
19 #include "chrome/browser/autocomplete/history_url_provider.h" | 19 #include "chrome/browser/autocomplete/history_url_provider.h" |
20 #include "chrome/browser/autocomplete/search_provider.h" | 20 #include "chrome/browser/autocomplete/search_provider.h" |
21 #include "chrome/browser/autocomplete/url_prefix.h" | 21 #include "chrome/browser/autocomplete/url_prefix.h" |
22 #include "chrome/browser/metrics/variations/variations_http_header_provider.h" | 22 #include "chrome/browser/metrics/variations/variations_http_header_provider.h" |
23 #include "chrome/browser/net/url_fixer_upper.h" | 23 #include "chrome/browser/net/url_fixer_upper.h" |
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 HistoryURLProvider::SuggestExactInput(this, input, true)); | 479 HistoryURLProvider::SuggestExactInput(this, input, true)); |
480 match.is_history_what_you_typed_match = false; | 480 match.is_history_what_you_typed_match = false; |
481 | 481 |
482 // The placeholder suggestion for the current URL has high relevance so | 482 // The placeholder suggestion for the current URL has high relevance so |
483 // that it is in the first suggestion slot and inline autocompleted. It | 483 // that it is in the first suggestion slot and inline autocompleted. It |
484 // gets dropped as soon as the user types something. | 484 // gets dropped as soon as the user types something. |
485 match.relevance = verbatim_relevance_; | 485 match.relevance = verbatim_relevance_; |
486 | 486 |
487 return match; | 487 return match; |
488 } | 488 } |
OLD | NEW |