| 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_url_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_match.h" | 11 #include "chrome/browser/autocomplete/autocomplete_match.h" |
| 12 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" | 12 #include "chrome/browser/autocomplete/autocomplete_provider_listener.h" |
| 13 #include "chrome/browser/history/history.h" | 13 #include "chrome/browser/history/history.h" |
| 14 #include "chrome/browser/history/history_service_factory.h" | 14 #include "chrome/browser/history/history_service_factory.h" |
| 15 #include "chrome/browser/net/url_fixer_upper.h" | 15 #include "chrome/browser/net/url_fixer_upper.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/common/url_constants.h" | 17 #include "chrome/common/url_constants.h" |
| 18 #include "googleurl/src/url_util.h" | 18 #include "googleurl/src/url_util.h" |
| 19 | 19 |
| 20 HistoryProvider::HistoryProvider(AutocompleteProviderListener* listener, | 20 HistoryProvider::HistoryProvider(AutocompleteProviderListener* listener, |
| 21 Profile* profile, | 21 Profile* profile, |
| 22 const char* name) | 22 AutocompleteProvider::Type type) |
| 23 : AutocompleteProvider(listener, profile, name), | 23 : AutocompleteProvider(listener, profile, type), |
| 24 always_prevent_inline_autocomplete_(false) { | 24 always_prevent_inline_autocomplete_(false) { |
| 25 } | 25 } |
| 26 | 26 |
| 27 HistoryProvider::~HistoryProvider() {} | 27 HistoryProvider::~HistoryProvider() {} |
| 28 | 28 |
| 29 void HistoryProvider::DeleteMatch(const AutocompleteMatch& match) { | 29 void HistoryProvider::DeleteMatch(const AutocompleteMatch& match) { |
| 30 DCHECK(done_); | 30 DCHECK(done_); |
| 31 DCHECK(profile_); | 31 DCHECK(profile_); |
| 32 DCHECK(match.deletable); | 32 DCHECK(match.deletable); |
| 33 | 33 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 154 } |
| 155 | 155 |
| 156 // static | 156 // static |
| 157 bool HistoryProvider::PreventInlineAutocomplete( | 157 bool HistoryProvider::PreventInlineAutocomplete( |
| 158 const AutocompleteInput& input) { | 158 const AutocompleteInput& input) { |
| 159 return input.prevent_inline_autocomplete() || | 159 return input.prevent_inline_autocomplete() || |
| 160 always_prevent_inline_autocomplete_ || | 160 always_prevent_inline_autocomplete_ || |
| 161 (!input.text().empty() && | 161 (!input.text().empty() && |
| 162 IsWhitespace(input.text()[input.text().length() - 1])); | 162 IsWhitespace(input.text()[input.text().length() - 1])); |
| 163 } | 163 } |
| OLD | NEW |