OLD | NEW |
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/autocomplete/search_provider.h" | 5 #include "chrome/browser/autocomplete/search_provider.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <cmath> | 8 #include <cmath> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/i18n/break_iterator.h" | 12 #include "base/i18n/break_iterator.h" |
13 #include "base/i18n/case_conversion.h" | 13 #include "base/i18n/case_conversion.h" |
14 #include "base/i18n/icu_string_conversions.h" | 14 #include "base/i18n/icu_string_conversions.h" |
15 #include "base/json/json_string_value_serializer.h" | 15 #include "base/json/json_string_value_serializer.h" |
16 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/prefs/pref_service.h" | 18 #include "base/prefs/pref_service.h" |
19 #include "base/string16.h" | 19 #include "base/strings/string16.h" |
20 #include "base/string_util.h" | 20 #include "base/strings/string_util.h" |
21 #include "base/strings/utf_string_conversions.h" | 21 #include "base/strings/utf_string_conversions.h" |
22 #include "chrome/browser/autocomplete/autocomplete_classifier.h" | 22 #include "chrome/browser/autocomplete/autocomplete_classifier.h" |
23 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h" | 23 #include "chrome/browser/autocomplete/autocomplete_classifier_factory.h" |
24 #include "chrome/browser/autocomplete/autocomplete_match.h" | 24 #include "chrome/browser/autocomplete/autocomplete_match.h" |
25 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" | 25 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" |
26 #include "chrome/browser/autocomplete/autocomplete_result.h" | 26 #include "chrome/browser/autocomplete/autocomplete_result.h" |
27 #include "chrome/browser/autocomplete/keyword_provider.h" | 27 #include "chrome/browser/autocomplete/keyword_provider.h" |
28 #include "chrome/browser/autocomplete/url_prefix.h" | 28 #include "chrome/browser/autocomplete/url_prefix.h" |
29 #include "chrome/browser/history/history_service.h" | 29 #include "chrome/browser/history/history_service.h" |
30 #include "chrome/browser/history/history_service_factory.h" | 30 #include "chrome/browser/history/history_service_factory.h" |
(...skipping 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1602 it->set_relevance(max_query_relevance); | 1602 it->set_relevance(max_query_relevance); |
1603 } | 1603 } |
1604 } | 1604 } |
1605 | 1605 |
1606 void SearchProvider::UpdateDone() { | 1606 void SearchProvider::UpdateDone() { |
1607 // We're done when the timer isn't running, there are no suggest queries | 1607 // We're done when the timer isn't running, there are no suggest queries |
1608 // pending, and we're not waiting on Instant. | 1608 // pending, and we're not waiting on Instant. |
1609 done_ = IsNonInstantSearchDone() && | 1609 done_ = IsNonInstantSearchDone() && |
1610 (instant_finalized_ || !chrome::IsInstantEnabled(profile_)); | 1610 (instant_finalized_ || !chrome::IsInstantEnabled(profile_)); |
1611 } | 1611 } |
OLD | NEW |