| 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 bd1f19aa25b879c45213ec4de77fc2e0abd65c45..26d576028c46de187e2950ad1994199707e2d638 100644
|
| --- a/content/browser/frame_host/frame_tree.h
|
| +++ b/content/browser/frame_host/frame_tree.h
|
| @@ -135,6 +135,11 @@ class CONTENT_EXPORT FrameTree {
|
| typedef base::hash_map<int, RenderViewHostImpl*> RenderViewHostMap;
|
| typedef std::multimap<int, RenderViewHostImpl*> RenderViewHostMultiMap;
|
|
|
| + // A variation to the public ForEach method with a difference that the subtree
|
| + // starting at |skip_this_subtree| will not be recursed into.
|
| + void ForEach(const base::Callback<bool(FrameTreeNode*)>& on_node,
|
| + FrameTreeNode* skip_this_subtree) const;
|
| +
|
| // These delegates are installed into all the RenderViewHosts and
|
| // RenderFrameHosts that we create.
|
| RenderFrameHostDelegate* render_frame_delegate_;
|
|
|