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

Unified Diff: chrome/browser/autofill/autofill_manager.cc

Issue 11270018: [autofill] Adding new API to request an interactive autocomplete UI flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: isherman@ review Created 8 years, 2 months 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
Index: chrome/browser/autofill/autofill_manager.cc
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
index f9dfd82a7e3b4be008cfffe9820981709c137158..72fbaf3bf659164de99206192d3c57245255a571 100644
--- a/chrome/browser/autofill/autofill_manager.cc
+++ b/chrome/browser/autofill/autofill_manager.cc
@@ -58,6 +58,7 @@
#include "grit/generated_resources.h"
#include "ipc/ipc_message_macros.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebAutofillClient.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/rect.h"
@@ -359,6 +360,8 @@ bool AutofillManager::OnMessageReceived(const IPC::Message& message) {
OnShowPasswordSuggestions)
IPC_MESSAGE_HANDLER(AutofillHostMsg_SetDataList,
OnSetDataList)
+ IPC_MESSAGE_HANDLER(AutofillHostMsg_RequestAutocomplete,
+ OnRequestAutocomplete)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
@@ -796,6 +799,17 @@ void AutofillManager::OnSetDataList(const std::vector<string16>& values,
}
}
+void AutofillManager::OnRequestAutocomplete(const FormData& form) {
+ RenderViewHost* host = web_contents()->GetRenderViewHost();
+ if (!host)
+ return;
+
+ // TODO(dbeam): implement interactive autocomplete UI. Just send an error
+ // right away until we have an implementation. (http://webk.it/100560)
+ host->Send(new AutofillMsg_RequestAutocompleteFinished(
+ host->GetRoutingID(), WebKit::WebFormElement::AutocompleteError));
+}
+
void AutofillManager::OnLoadedServerPredictions(
const std::string& response_xml) {
// Parse and store the server predictions.

Powered by Google App Engine
This is Rietveld 408576698