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

Unified Diff: content/public/browser/web_contents.h

Issue 1413543005: Use FrameTreeNode ID as frameId in extension APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Charlie's nits (#33) Created 5 years 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/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index c9fa8a011e04fed5db3aad0bb80354a194b29158..61f3d0abc018fadcb190db38c25844a5311dd07c 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -212,6 +212,12 @@ class WebContents : public PageNavigator,
// Returns the focused frame for the currently active view.
virtual RenderFrameHost* GetFocusedFrame() = 0;
+ // Returns the current RenderFrameHost for a given FrameTreeNode ID if it is
+ // part of this tab. See RenderFrameHost::GetFrameTreeNodeId for documentation
+ // on this ID.
+ virtual RenderFrameHost* FindFrameByFrameTreeNodeId(
+ int frame_tree_node_id) = 0;
+
// Calls |on_frame| for each frame in the currently active view.
// Note: The RenderFrameHost parameter is not guaranteed to have a live
// RenderFrame counterpart in the renderer process. Callbacks should check

Powered by Google App Engine
This is Rietveld 408576698