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

Unified Diff: Source/web/ChromeClientImpl.cpp

Issue 1006793002: Add new method xhrSucceeded() to WebAutofillClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup Created 5 years, 9 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: Source/web/ChromeClientImpl.cpp
diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
index 16f5b8fdb8bd0030f0705de2479ee80d3e005e29..043473014cb49bb68467f1b48916440e7175d92f 100644
--- a/Source/web/ChromeClientImpl.cpp
+++ b/Source/web/ChromeClientImpl.cpp
@@ -879,6 +879,13 @@ void ChromeClientImpl::textFieldDataListChanged(HTMLInputElement& input)
webframe->autofillClient()->dataListOptionsChanged(WebInputElement(&input));
}
+void ChromeClientImpl::xhrSucceeded(LocalFrame* frame)
+{
+ WebLocalFrameImpl* webframe = WebLocalFrameImpl::fromFrame(frame);
+ if (webframe->autofillClient())
+ webframe->autofillClient()->xhrSucceeded();
+}
+
void ChromeClientImpl::registerViewportLayers() const
{
if (m_webView->rootGraphicsLayer() && m_webView->layerTreeView() && m_webView->pinchVirtualViewportEnabled())

Powered by Google App Engine
This is Rietveld 408576698