Chromium Code Reviews| 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(); |