| 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 2ee1cdd7552f63c6c95a5c051bc62a60d0fe3f62..8aa85bb0e72db66510e729eff46e479212bc2d15 100644
|
| --- a/content/browser/frame_host/frame_tree.h
|
| +++ b/content/browser/frame_host/frame_tree.h
|
| @@ -124,15 +124,15 @@ class CONTENT_EXPORT FrameTree {
|
| void RegisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
|
| void UnregisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
|
|
|
| + // Returns the FrameTreeNode with the given renderer-specific |frame_id|.
|
| + // TODO(creis): Make this private and replace this with a version that takes
|
| + // in a routing ID.
|
| + FrameTreeNode* FindByFrameID(int64 frame_id);
|
| +
|
| private:
|
| typedef std::pair<RenderViewHostImpl*, int> RenderViewHostRefCount;
|
| typedef base::hash_map<int, RenderViewHostRefCount> RenderViewHostMap;
|
|
|
| - // Returns the FrameTreeNode with the given renderer-specific |frame_id|.
|
| - // For internal use only.
|
| - // TODO(creis): Replace this with a version that takes in a routing ID.
|
| - FrameTreeNode* FindByFrameID(int64 frame_id);
|
| -
|
| // These delegates are installed into all the RenderViewHosts and
|
| // RenderFrameHosts that we create.
|
| RenderFrameHostDelegate* render_frame_delegate_;
|
|
|