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

Unified Diff: content/public/renderer/render_frame_observer.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: content/public/renderer/render_frame_observer.h
diff --git a/content/public/renderer/render_frame_observer.h b/content/public/renderer/render_frame_observer.h
index 7211fdcd334185658fccdb079a15da1fd66a60b1..0464ff57e864e5807fdabb597281de5acde2cc31 100644
--- a/content/public/renderer/render_frame_observer.h
+++ b/content/public/renderer/render_frame_observer.h
@@ -118,6 +118,14 @@ class CONTENT_EXPORT RenderFrameObserver : public IPC::Listener,
// Called when the focused node has changed to |node|.
virtual void FocusedNodeChanged(const blink::WebNode& node) {}
+ // Called when an element has gained focus inside the frame and after all the
+ // required animations (if any) have finished.
+ virtual void DidCompleteFocusChangeInFrame() {}
+
+ // Called when a gesture tap or mouse down occurs inside |node| in this frame.
+ virtual void DidCompleteLeftMouseDownOrGestureTapInNode(
+ const blink::WebNode& node) {}
+
// Called when accessibility is enabled or disabled.
virtual void AccessibilityModeChanged() {}

Powered by Google App Engine
This is Rietveld 408576698