| Index: content/browser/frame_host/frame_tree.h
|
| diff --git a/content/browser/frame_host/frame_tree.h b/content/browser/frame_host/frame_tree.h
|
| index 252f3b147840d60b0d1013a4c56f89b2dbe75c4d..c853dd5b39160e73ac48943d6f9fdf98c6736196 100644
|
| --- a/content/browser/frame_host/frame_tree.h
|
| +++ b/content/browser/frame_host/frame_tree.h
|
| @@ -121,11 +121,10 @@
|
| // RenderFrameHost for each SiteInstance should be created before subframes.
|
| RenderViewHostImpl* GetRenderViewHost(SiteInstance* site_instance);
|
|
|
| - // Keeps track of which RenderFrameHosts and RenderFrameProxyHosts are using
|
| - // each RenderViewHost. When the number drops to zero, we call Shutdown on
|
| - // the RenderViewHost.
|
| - void AddRenderViewHostRef(RenderViewHostImpl* render_view_host);
|
| - void ReleaseRenderViewHostRef(RenderViewHostImpl* render_view_host);
|
| + // Keeps track of which RenderFrameHosts are using each RenderViewHost. When
|
| + // the number drops to zero, we call Shutdown on the RenderViewHost.
|
| + void RegisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
|
| + void UnregisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
|
|
|
| // This is only meant to be called by FrameTreeNode. Triggers calling
|
| // the listener installed by SetFrameRemoveListener.
|
|
|