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

Unified Diff: content/renderer/render_frame_impl.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/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 3ddeaae759779d0a030ea6d32150ba0dd81ed107..07531e457634f262cb9deaf6e942b3f361f2dada 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -249,6 +249,9 @@ class CONTENT_EXPORT RenderFrameImpl
// Overwrites the given URL to use an HTML5 embed if possible.
blink::WebURL overrideFlashEmbedWithHTML(const blink::WebURL& url) override;
+ void didCompleteLeftMouseDownOrGestureTapInNode(
+ const blink::WebNode& node) override;
+
~RenderFrameImpl() override;
// Called by RenderWidget when meaningful layout has happened.
@@ -265,6 +268,14 @@ class CONTENT_EXPORT RenderFrameImpl
// Returns the unique name of the RenderFrame.
const std::string& unique_name() const { return unique_name_helper_.value(); }
+ // Called by render widget to notify about a change in focused element.
+ void DidCompleteFocusChange();
+
+ // Called by render widget to notify about handling a left mouse down or
+ // gesture tap in |node|. |node| belongs to a frame inside the subtree rooted
+ // at the local root and is never null.
+ void DidCompleteLeftMouseDownOrGestureTapInNode(const blink::WebNode& node);
+
// TODO(jam): this is a temporary getter until all the code is transitioned
// to using RenderFrame instead of RenderView.
RenderViewImpl* render_view() { return render_view_; }

Powered by Google App Engine
This is Rietveld 408576698