Chromium Code Reviews| 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" | |
|
Mark P
2012/09/28 00:55:13
I'm curious: are either of the above two things ne
mrossetti
2012/10/02 00:44:16
No, it's just cleanup that I happened across. I ca
| |
| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 154 } | 155 } |
| 155 | 156 |
| 156 // static | 157 // static |
| 157 bool HistoryProvider::PreventInlineAutocomplete( | 158 bool HistoryProvider::PreventInlineAutocomplete( |
| 158 const AutocompleteInput& input) { | 159 const AutocompleteInput& input) { |
| 159 return input.prevent_inline_autocomplete() || | 160 return input.prevent_inline_autocomplete() || |
| 160 always_prevent_inline_autocomplete_ || | 161 always_prevent_inline_autocomplete_ || |
| 161 (!input.text().empty() && | 162 (!input.text().empty() && |
| 162 IsWhitespace(input.text()[input.text().length() - 1])); | 163 IsWhitespace(input.text()[input.text().length() - 1])); |
| 163 } | 164 } |
| OLD | NEW |