diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/autofill/content/renderer/autofill_agent.cc | 6 | ||||
-rw-r--r-- | components/autofill/content/renderer/autofill_agent.h | 4 |
2 files changed, 0 insertions, 10 deletions
diff --git a/components/autofill/content/renderer/autofill_agent.cc b/components/autofill/content/renderer/autofill_agent.cc index 50a3e34..ab9bfae 100644 --- a/components/autofill/content/renderer/autofill_agent.cc +++ b/components/autofill/content/renderer/autofill_agent.cc @@ -251,12 +251,6 @@ void AutofillAgent::DidChangeScrollOffset(WebLocalFrame*) { } void AutofillAgent::didRequestAutocomplete( - const WebFormElement& form, - const blink::WebAutocompleteParams& details) { - didRequestAutocomplete(form); -} - -void AutofillAgent::didRequestAutocomplete( const WebFormElement& form) { // Disallow the dialog over non-https or broken https, except when the // ignore SSL flag is passed. See http://crbug.com/272512. diff --git a/components/autofill/content/renderer/autofill_agent.h b/components/autofill/content/renderer/autofill_agent.h index bfa6e54..af40775 100644 --- a/components/autofill/content/renderer/autofill_agent.h +++ b/components/autofill/content/renderer/autofill_agent.h @@ -82,10 +82,6 @@ class AutofillAgent : public content::RenderViewObserver, virtual void textFieldDidReceiveKeyDown( const blink::WebInputElement& element, const blink::WebKeyboardEvent& event); - // TODO(estade): remove. - virtual void didRequestAutocomplete( - const blink::WebFormElement& form, - const blink::WebAutocompleteParams& details); virtual void didRequestAutocomplete( const blink::WebFormElement& form); virtual void setIgnoreTextChanges(bool ignore); |