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

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 976313003: [DevTools] Expose DevToolsAgentHost for OOPIF, display it in chrome://inspect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/browser/frame_host/render_frame_host_impl.h
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
index ca442d27367f9a9f528b4d49454b85457810d156..3e14c959d2cb36daea8408de34b92d7d0677559b 100644
--- a/content/browser/frame_host/render_frame_host_impl.h
+++ b/content/browser/frame_host/render_frame_host_impl.h
@@ -209,6 +209,10 @@ class CONTENT_EXPORT RenderFrameHostImpl
// pointer to the RenderViewHost (which inherits RenderWidgetHost).
RenderWidgetHostImpl* GetRenderWidgetHost();
+ // Returns whether this frame is the root of the frame group. Frame group
Charlie Reis 2015/03/05 20:31:14 This is redundant with IsCrossProcessSubframe, so
dgozman 2015/03/06 16:14:14 Done.
+ // is the continuous group of frames living in the same process.
+ bool IsFrameGroupRoot() { return GetRenderWidgetHost(); }
nasko 2015/03/05 15:20:48 non-trivial method's implementations need to be in
+
// This returns the RenderWidgetHostView that can be used to control
// focus and visibility for this frame.
RenderWidgetHostView* GetView();

Powered by Google App Engine
This is Rietveld 408576698