| 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/in_memory_url_index.h" | 20 #include "chrome/browser/autocomplete/in_memory_url_index.h" |
| 20 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 21 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 21 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
| 22 #include "chrome/browser/search_engines/template_url_service_factory.h" | 23 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| 23 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
| 24 #include "chrome/common/crash_keys.h" | 25 #include "chrome/common/crash_keys.h" |
| 25 #include "chrome/common/pref_names.h" | 26 #include "chrome/common/pref_names.h" |
| 26 #include "chrome/common/url_constants.h" | 27 #include "chrome/common/url_constants.h" |
| 27 #include "components/bookmarks/browser/bookmark_model.h" | 28 #include "components/bookmarks/browser/bookmark_model.h" |
| 28 #include "components/history/core/browser/history_database.h" | 29 #include "components/history/core/browser/history_database.h" |
| 29 #include "components/history/core/browser/history_service.h" | 30 #include "components/history/core/browser/history_service.h" |
| 30 #include "components/metrics/proto/omnibox_input_type.pb.h" | 31 #include "components/metrics/proto/omnibox_input_type.pb.h" |
| 31 #include "components/omnibox/autocomplete_match_type.h" | 32 #include "components/omnibox/autocomplete_match_type.h" |
| 32 #include "components/omnibox/autocomplete_result.h" | 33 #include "components/omnibox/autocomplete_result.h" |
| 33 #include "components/omnibox/history_url_provider.h" | |
| 34 #include "components/omnibox/in_memory_url_index_types.h" | 34 #include "components/omnibox/in_memory_url_index_types.h" |
| 35 #include "components/omnibox/omnibox_field_trial.h" | 35 #include "components/omnibox/omnibox_field_trial.h" |
| 36 #include "components/search_engines/template_url.h" | 36 #include "components/search_engines/template_url.h" |
| 37 #include "components/search_engines/template_url_service.h" | 37 #include "components/search_engines/template_url_service.h" |
| 38 #include "content/public/browser/notification_source.h" | 38 #include "content/public/browser/notification_source.h" |
| 39 #include "content/public/browser/notification_types.h" | 39 #include "content/public/browser/notification_types.h" |
| 40 #include "net/base/escape.h" | 40 #include "net/base/escape.h" |
| 41 #include "net/base/net_util.h" | 41 #include "net/base/net_util.h" |
| 42 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 42 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 43 #include "url/third_party/mozilla/url_parse.h" | 43 #include "url/third_party/mozilla/url_parse.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 match.description = info.title(); | 275 match.description = info.title(); |
| 276 match.description_class = SpansFromTermMatch( | 276 match.description_class = SpansFromTermMatch( |
| 277 history_match.title_matches, match.description.length(), false); | 277 history_match.title_matches, match.description.length(), false); |
| 278 | 278 |
| 279 match.RecordAdditionalInfo("typed count", info.typed_count()); | 279 match.RecordAdditionalInfo("typed count", info.typed_count()); |
| 280 match.RecordAdditionalInfo("visit count", info.visit_count()); | 280 match.RecordAdditionalInfo("visit count", info.visit_count()); |
| 281 match.RecordAdditionalInfo("last visit", info.last_visit()); | 281 match.RecordAdditionalInfo("last visit", info.last_visit()); |
| 282 | 282 |
| 283 return match; | 283 return match; |
| 284 } | 284 } |
| OLD | NEW |