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

Unified Diff: Source/core/loader/FrameLoaderClient.h

Issue 214823008: Add transaction detail params to requestAutocomplete(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove newline Created 6 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/core/loader/FrameLoaderClient.h
diff --git a/Source/core/loader/FrameLoaderClient.h b/Source/core/loader/FrameLoaderClient.h
index ab2ca266141d4c60290932f870e6907412b65a20..62f4f8edf034e825a61545330234bc368f7a513a 100644
--- a/Source/core/loader/FrameLoaderClient.h
+++ b/Source/core/loader/FrameLoaderClient.h
@@ -58,6 +58,7 @@ class WebApplicationCacheHostClient;
namespace WebCore {
class Color;
+ class Dictionary;
class DOMWindowExtension;
class DOMWrapperWorld;
class DocumentLoader;
@@ -208,7 +209,7 @@ namespace WebCore {
virtual void dispatchWillStartUsingPeerConnectionHandler(blink::WebRTCPeerConnectionHandler*) { }
- virtual void didRequestAutocomplete(HTMLFormElement*) = 0;
+ virtual void didRequestAutocomplete(HTMLFormElement*, const Dictionary&) = 0;
virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings; }
// Informs the embedder that a WebGL canvas inside this frame received a lost context

Powered by Google App Engine
This is Rietveld 408576698