Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5014)

Unified Diff: chrome/browser/autocomplete_history_manager.cc

Issue 4985003: Revert 66214 - Display a warning when autofill is disabled for a website.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autocomplete_history_manager.h ('k') | chrome/browser/autofill/autofill_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete_history_manager.cc
===================================================================
--- chrome/browser/autocomplete_history_manager.cc (revision 66219)
+++ chrome/browser/autocomplete_history_manager.cc (working copy)
@@ -73,7 +73,8 @@
AutocompleteHistoryManager::AutocompleteHistoryManager(
TabContents* tab_contents) : tab_contents_(tab_contents),
- pending_query_handle_(0) {
+ pending_query_handle_(0),
+ query_id_(0) {
DCHECK(tab_contents);
profile_ = tab_contents_->profile();
@@ -93,17 +94,17 @@
StoreFormEntriesInWebDatabase(form);
}
-void AutocompleteHistoryManager::GetAutocompleteSuggestions(
- const string16& name, const string16& prefix) {
- if (!*autofill_enabled_) {
- SendSuggestions(NULL);
- return;
- }
+bool AutocompleteHistoryManager::GetAutocompleteSuggestions(
+ int query_id, const string16& name, const string16& prefix) {
+ if (!*autofill_enabled_)
+ return false;
CancelPendingQuery();
+ query_id_ = query_id;
pending_query_handle_ = web_data_service_->GetFormValuesForElementName(
name, prefix, kMaxAutocompleteMenuItems, this);
+ return true;
}
void AutocompleteHistoryManager::RemoveAutocompleteEntry(
@@ -129,7 +130,8 @@
Profile* profile, WebDataService* wds) : tab_contents_(NULL),
profile_(profile),
web_data_service_(wds),
- pending_query_handle_(0) {
+ pending_query_handle_(0),
+ query_id_(0) {
autofill_enabled_.Init(
prefs::kAutoFillEnabled, profile_->GetPrefs(), NULL);
}
@@ -185,8 +187,10 @@
DCHECK(result->GetType() == AUTOFILL_VALUE_RESULT);
const WDResult<std::vector<string16> >* autofill_result =
static_cast<const WDResult<std::vector<string16> >*>(result);
- host->AutocompleteSuggestionsReturned(autofill_result->GetValue());
+ host->AutocompleteSuggestionsReturned(
+ query_id_, autofill_result->GetValue());
} else {
- host->AutocompleteSuggestionsReturned(std::vector<string16>());
+ host->AutocompleteSuggestionsReturned(
+ query_id_, std::vector<string16>());
}
}
« no previous file with comments | « chrome/browser/autocomplete_history_manager.h ('k') | chrome/browser/autofill/autofill_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698