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

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: Address comments, add WebNavigationApiTest.CrossProcessIframe test Created 5 years, 1 month 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 795bec5a678da5d77c5485d6e4a16b73063ecbd9..832894c785c8deae4f4e0113e4cc1c9ca1a6ae76 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -211,6 +211,10 @@ 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.
+ virtual RenderFrameHost* FindByFrameTreeNodeID(int frame_tree_node_id) = 0;
Charlie Reis 2015/11/03 00:23:49 nit: FindFrameByFrameTreeNodeID (Otherwise FindBy
robwu 2015/11/03 10:03:02 Done.
+
// 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