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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp

Issue 1958543002: requestAutocomplete: remove from web platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: -GenericEventQueue Created 4 years, 7 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: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index ecfe5353f44b0de925d873ef2c2eb37c696d3816..27fd74c6bce83288631e8b371d681d661038ec11 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -954,12 +954,6 @@ void FrameLoaderClientImpl::dispatchWillStartUsingPeerConnectionHandler(WebRTCPe
m_webFrame->client()->willStartUsingPeerConnectionHandler(handler);
}
-void FrameLoaderClientImpl::didRequestAutocomplete(HTMLFormElement* form)
-{
- if (m_webFrame->autofillClient())
- m_webFrame->autofillClient()->didRequestAutocomplete(WebFormElement(form));
-}
-
bool FrameLoaderClientImpl::allowWebGL(bool enabledPerSettings)
{
if (m_webFrame->client())

Powered by Google App Engine
This is Rietveld 408576698