Commit 304130fa authored by estade@chromium.org's avatar estade@chromium.org

remove transaction details from didRequestAutocomplete

see https://codereview.chromium.org/293853002/

BUG=354897

Review URL: https://codereview.chromium.org/299553002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272627 0039d316-1c4b-4281-b951-d872f2087c98
parent 29aa3d51
...@@ -254,8 +254,11 @@ void AutofillAgent::DidChangeScrollOffset(WebLocalFrame*) { ...@@ -254,8 +254,11 @@ void AutofillAgent::DidChangeScrollOffset(WebLocalFrame*) {
void AutofillAgent::didRequestAutocomplete( void AutofillAgent::didRequestAutocomplete(
const WebFormElement& form, const WebFormElement& form,
const blink::WebAutocompleteParams& details) { const blink::WebAutocompleteParams& details) {
// TODO(estade): honor |details|. didRequestAutocomplete(form);
}
void AutofillAgent::didRequestAutocomplete(
const WebFormElement& form) {
// Disallow the dialog over non-https or broken https, except when the // Disallow the dialog over non-https or broken https, except when the
// ignore SSL flag is passed. See http://crbug.com/272512. // ignore SSL flag is passed. See http://crbug.com/272512.
// TODO(palmer): this should be moved to the browser process after frames // TODO(palmer): this should be moved to the browser process after frames
......
...@@ -82,9 +82,12 @@ class AutofillAgent : public content::RenderViewObserver, ...@@ -82,9 +82,12 @@ class AutofillAgent : public content::RenderViewObserver,
virtual void textFieldDidReceiveKeyDown( virtual void textFieldDidReceiveKeyDown(
const blink::WebInputElement& element, const blink::WebInputElement& element,
const blink::WebKeyboardEvent& event); const blink::WebKeyboardEvent& event);
// TODO(estade): remove.
virtual void didRequestAutocomplete( virtual void didRequestAutocomplete(
const blink::WebFormElement& form, const blink::WebFormElement& form,
const blink::WebAutocompleteParams& details); const blink::WebAutocompleteParams& details);
virtual void didRequestAutocomplete(
const blink::WebFormElement& form);
virtual void setIgnoreTextChanges(bool ignore); virtual void setIgnoreTextChanges(bool ignore);
virtual void didAssociateFormControls( virtual void didAssociateFormControls(
const blink::WebVector<blink::WebNode>& nodes); const blink::WebVector<blink::WebNode>& nodes);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment