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/history_quick_provider.h" | 5 #include "chrome/browser/autocomplete/history_quick_provider.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/debug/crash_logging.h" | 10 #include "base/debug/crash_logging.h" |
11 #include "base/i18n/break_iterator.h" | 11 #include "base/i18n/break_iterator.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/metrics/field_trial.h" | 13 #include "base/metrics/field_trial.h" |
14 #include "base/prefs/pref_service.h" | 14 #include "base/prefs/pref_service.h" |
15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
18 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h" | 18 #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h" |
19 #include "chrome/browser/autocomplete/history_url_provider.h" | 19 #include "chrome/browser/autocomplete/history_url_provider.h" |
20 #include "chrome/browser/autocomplete/in_memory_url_index.h" | 20 #include "chrome/browser/autocomplete/in_memory_url_index.h" |
21 #include "chrome/browser/autocomplete/in_memory_url_index_types.h" | |
22 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 21 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
23 #include "chrome/browser/history/history_service_factory.h" | 22 #include "chrome/browser/history/history_service_factory.h" |
24 #include "chrome/browser/profiles/profile.h" | 23 #include "chrome/browser/profiles/profile.h" |
25 #include "chrome/browser/search_engines/template_url_service_factory.h" | 24 #include "chrome/browser/search_engines/template_url_service_factory.h" |
26 #include "chrome/common/chrome_switches.h" | 25 #include "chrome/common/chrome_switches.h" |
27 #include "chrome/common/crash_keys.h" | 26 #include "chrome/common/crash_keys.h" |
28 #include "chrome/common/pref_names.h" | 27 #include "chrome/common/pref_names.h" |
29 #include "chrome/common/url_constants.h" | 28 #include "chrome/common/url_constants.h" |
30 #include "components/bookmarks/browser/bookmark_model.h" | 29 #include "components/bookmarks/browser/bookmark_model.h" |
31 #include "components/history/core/browser/history_database.h" | 30 #include "components/history/core/browser/history_database.h" |
32 #include "components/history/core/browser/history_service.h" | 31 #include "components/history/core/browser/history_service.h" |
33 #include "components/metrics/proto/omnibox_input_type.pb.h" | 32 #include "components/metrics/proto/omnibox_input_type.pb.h" |
34 #include "components/omnibox/autocomplete_match_type.h" | 33 #include "components/omnibox/autocomplete_match_type.h" |
35 #include "components/omnibox/autocomplete_result.h" | 34 #include "components/omnibox/autocomplete_result.h" |
| 35 #include "components/omnibox/in_memory_url_index_types.h" |
36 #include "components/omnibox/omnibox_field_trial.h" | 36 #include "components/omnibox/omnibox_field_trial.h" |
37 #include "components/search_engines/template_url.h" | 37 #include "components/search_engines/template_url.h" |
38 #include "components/search_engines/template_url_service.h" | 38 #include "components/search_engines/template_url_service.h" |
39 #include "content/public/browser/notification_source.h" | 39 #include "content/public/browser/notification_source.h" |
40 #include "content/public/browser/notification_types.h" | 40 #include "content/public/browser/notification_types.h" |
41 #include "net/base/escape.h" | 41 #include "net/base/escape.h" |
42 #include "net/base/net_util.h" | 42 #include "net/base/net_util.h" |
43 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 43 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
44 #include "url/third_party/mozilla/url_parse.h" | 44 #include "url/third_party/mozilla/url_parse.h" |
45 #include "url/url_util.h" | 45 #include "url/url_util.h" |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 match.description = info.title(); | 276 match.description = info.title(); |
277 match.description_class = SpansFromTermMatch( | 277 match.description_class = SpansFromTermMatch( |
278 history_match.title_matches, match.description.length(), false); | 278 history_match.title_matches, match.description.length(), false); |
279 | 279 |
280 match.RecordAdditionalInfo("typed count", info.typed_count()); | 280 match.RecordAdditionalInfo("typed count", info.typed_count()); |
281 match.RecordAdditionalInfo("visit count", info.visit_count()); | 281 match.RecordAdditionalInfo("visit count", info.visit_count()); |
282 match.RecordAdditionalInfo("last visit", info.last_visit()); | 282 match.RecordAdditionalInfo("last visit", info.last_visit()); |
283 | 283 |
284 return match; | 284 return match; |
285 } | 285 } |
OLD | NEW |