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

Unified Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 2766053002: [refactor] Fix autofill features for payments when the form is inside an OOPIF (Closed)
Patch Set: Move a method from WebWidgetClient to WebFrameClient Created 3 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: third_party/WebKit/public/web/WebFrameClient.h
diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
index 5d712ada92a266ac35abd9305b4e181d7dc2582b..2f69316e7954e7f683a36291e08d92c7853ed173 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -757,6 +757,11 @@ class BLINK_EXPORT WebFrameClient {
virtual WebURL overrideFlashEmbedWithHTML(const WebURL& url) {
return WebURL();
}
+
+ // Called when a left mouse down or a gesture tap event has been handled in
+ // |node| inside the frame. |node| is not null.
+ virtual void didCompleteLeftMouseDownOrGestureTapInNode(
+ const blink::WebNode& node) {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698