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 "components/omnibox/browser/shortcuts_provider.h" | 5 #include "components/omnibox/browser/shortcuts_provider.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <cmath> | 10 #include <cmath> |
11 #include <map> | 11 #include <map> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/i18n/break_iterator.h" | 14 #include "base/i18n/break_iterator.h" |
15 #include "base/i18n/case_conversion.h" | 15 #include "base/i18n/case_conversion.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
19 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
21 #include "base/time/time.h" | 21 #include "base/time/time.h" |
22 #include "base/trace_event/trace_event.h" | |
23 #include "components/history/core/browser/history_service.h" | 22 #include "components/history/core/browser/history_service.h" |
24 #include "components/metrics/proto/omnibox_input_type.pb.h" | 23 #include "components/metrics/proto/omnibox_input_type.pb.h" |
25 #include "components/omnibox/browser/autocomplete_i18n.h" | 24 #include "components/omnibox/browser/autocomplete_i18n.h" |
26 #include "components/omnibox/browser/autocomplete_input.h" | 25 #include "components/omnibox/browser/autocomplete_input.h" |
27 #include "components/omnibox/browser/autocomplete_match.h" | 26 #include "components/omnibox/browser/autocomplete_match.h" |
28 #include "components/omnibox/browser/autocomplete_provider_client.h" | 27 #include "components/omnibox/browser/autocomplete_provider_client.h" |
29 #include "components/omnibox/browser/autocomplete_result.h" | 28 #include "components/omnibox/browser/autocomplete_result.h" |
30 #include "components/omnibox/browser/history_provider.h" | 29 #include "components/omnibox/browser/history_provider.h" |
31 #include "components/omnibox/browser/omnibox_field_trial.h" | 30 #include "components/omnibox/browser/omnibox_field_trial.h" |
32 #include "components/omnibox/browser/url_prefix.h" | 31 #include "components/omnibox/browser/url_prefix.h" |
(...skipping 26 matching lines...) Expand all Loading... |
59 scoped_refptr<ShortcutsBackend> backend = client_->GetShortcutsBackend(); | 58 scoped_refptr<ShortcutsBackend> backend = client_->GetShortcutsBackend(); |
60 if (backend.get()) { | 59 if (backend.get()) { |
61 backend->AddObserver(this); | 60 backend->AddObserver(this); |
62 if (backend->initialized()) | 61 if (backend->initialized()) |
63 initialized_ = true; | 62 initialized_ = true; |
64 } | 63 } |
65 } | 64 } |
66 | 65 |
67 void ShortcutsProvider::Start(const AutocompleteInput& input, | 66 void ShortcutsProvider::Start(const AutocompleteInput& input, |
68 bool minimal_changes) { | 67 bool minimal_changes) { |
69 TRACE_EVENT0("omnibox", "ShortcutsProvider::Start"); | |
70 matches_.clear(); | 68 matches_.clear(); |
71 | 69 |
72 if (input.from_omnibox_focus() || | 70 if (input.from_omnibox_focus() || |
73 (input.type() == metrics::OmniboxInputType::INVALID) || | 71 (input.type() == metrics::OmniboxInputType::INVALID) || |
74 (input.type() == metrics::OmniboxInputType::FORCED_QUERY) || | 72 (input.type() == metrics::OmniboxInputType::FORCED_QUERY) || |
75 input.text().empty() || !initialized_) | 73 input.text().empty() || !initialized_) |
76 return; | 74 return; |
77 | 75 |
78 base::TimeTicks start_time = base::TimeTicks::Now(); | 76 base::TimeTicks start_time = base::TimeTicks::Now(); |
79 GetMatches(input); | 77 GetMatches(input); |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 const double kMaxDecaySpeedDivisor = 5.0; | 414 const double kMaxDecaySpeedDivisor = 5.0; |
417 const double kNumUsesPerDecaySpeedDivisorIncrement = 5.0; | 415 const double kNumUsesPerDecaySpeedDivisorIncrement = 5.0; |
418 double decay_divisor = std::min( | 416 double decay_divisor = std::min( |
419 kMaxDecaySpeedDivisor, | 417 kMaxDecaySpeedDivisor, |
420 (shortcut.number_of_hits + kNumUsesPerDecaySpeedDivisorIncrement - 1) / | 418 (shortcut.number_of_hits + kNumUsesPerDecaySpeedDivisorIncrement - 1) / |
421 kNumUsesPerDecaySpeedDivisorIncrement); | 419 kNumUsesPerDecaySpeedDivisorIncrement); |
422 | 420 |
423 return static_cast<int>((base_score / exp(decay_exponent / decay_divisor)) + | 421 return static_cast<int>((base_score / exp(decay_exponent / decay_divisor)) + |
424 0.5); | 422 0.5); |
425 } | 423 } |
OLD | NEW |