diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-16 06:19:56 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-16 06:19:56 +0000 |
commit | 1866d061a07ad56c082f439d5f50301944be4170 (patch) | |
tree | 2983cc377e5fe79f41f93fa7354258bee17ec07d /chrome/browser/autocomplete_history_manager.h | |
parent | e41c1da3c9b54efaa715b86aeec81a50ee86bfd4 (diff) | |
download | chromium_src-1866d061a07ad56c082f439d5f50301944be4170.zip chromium_src-1866d061a07ad56c082f439d5f50301944be4170.tar.gz chromium_src-1866d061a07ad56c082f439d5f50301944be4170.tar.bz2 |
Display a warning when autofill is disabled for a website.
This depends on a WebKit change being tracked at https://bugs.webkit.org/show_bug.cgi?id=49291
BUG=58509
TEST=unit_tests --gtest_filter=AutoFillManagerTest.*:AutoFillHelperTest.*
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=66214
Review URL: http://codereview.chromium.org/4591001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete_history_manager.h')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/autocomplete_history_manager.h b/chrome/browser/autocomplete_history_manager.h index 23493b3..5752942 100644 --- a/chrome/browser/autocomplete_history_manager.h +++ b/chrome/browser/autocomplete_history_manager.h @@ -28,8 +28,7 @@ class AutocompleteHistoryManager // RenderViewHostDelegate::Autocomplete implementation. virtual void FormSubmitted(const webkit_glue::FormData& form); - virtual bool GetAutocompleteSuggestions(int query_id, - const string16& name, + virtual void GetAutocompleteSuggestions(const string16& name, const string16& prefix); virtual void RemoveAutocompleteEntry(const string16& name, const string16& value); @@ -59,7 +58,6 @@ class AutocompleteHistoryManager // is queried on another thread, we record the query handle until we // get called back. WebDataService::Handle pending_query_handle_; - int query_id_; DISALLOW_COPY_AND_ASSIGN(AutocompleteHistoryManager); }; |