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_url_provider.h" | 5 #include "chrome/browser/autocomplete/history_provider.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| 11 #include "chrome/browser/autocomplete/autocomplete_input.h" |
11 #include "chrome/browser/autocomplete/autocomplete_match.h" | 12 #include "chrome/browser/autocomplete/autocomplete_match.h" |
12 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" | 13 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" |
13 #include "chrome/browser/history/history.h" | 14 #include "chrome/browser/history/history.h" |
14 #include "chrome/browser/history/history_service_factory.h" | 15 #include "chrome/browser/history/history_service_factory.h" |
15 #include "chrome/browser/net/url_fixer_upper.h" | 16 #include "chrome/browser/net/url_fixer_upper.h" |
16 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/common/url_constants.h" | 18 #include "chrome/common/url_constants.h" |
18 #include "googleurl/src/url_util.h" | 19 #include "googleurl/src/url_util.h" |
19 | 20 |
20 HistoryProvider::HistoryProvider(AutocompleteProviderListener* listener, | 21 HistoryProvider::HistoryProvider(AutocompleteProviderListener* listener, |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 } | 157 } |
157 | 158 |
158 // static | 159 // static |
159 bool HistoryProvider::PreventInlineAutocomplete( | 160 bool HistoryProvider::PreventInlineAutocomplete( |
160 const AutocompleteInput& input) { | 161 const AutocompleteInput& input) { |
161 return input.prevent_inline_autocomplete() || | 162 return input.prevent_inline_autocomplete() || |
162 always_prevent_inline_autocomplete_ || | 163 always_prevent_inline_autocomplete_ || |
163 (!input.text().empty() && | 164 (!input.text().empty() && |
164 IsWhitespace(input.text()[input.text().length() - 1])); | 165 IsWhitespace(input.text()[input.text().length() - 1])); |
165 } | 166 } |
OLD | NEW |