Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
| 13 #include "content/browser/frame_host/navigator.h" | |
| 13 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| 19 class NavigationControllerImpl; | |
| 20 class NavigatorDelegate; | |
| 21 class Navigator; | |
| 18 class RenderFrameHostImpl; | 22 class RenderFrameHostImpl; |
| 19 | 23 |
| 20 // When a page contains iframes, its renderer process maintains a tree structure | 24 // When a page contains iframes, its renderer process maintains a tree structure |
| 21 // of those frames. We are mirroring this tree in the browser process. This | 25 // of those frames. We are mirroring this tree in the browser process. This |
| 22 // class represents a node in this tree and is a wrapper for all objects that | 26 // class represents a node in this tree and is a wrapper for all objects that |
| 23 // are frame-specific (as opposed to page-specific). | 27 // are frame-specific (as opposed to page-specific). |
| 24 class CONTENT_EXPORT FrameTreeNode { | 28 class CONTENT_EXPORT FrameTreeNode { |
| 25 public: | 29 public: |
| 26 static const int64 kInvalidFrameId; | 30 static const int64 kInvalidFrameId; |
| 27 | 31 |
| 28 FrameTreeNode(int64 frame_id, const std::string& name, | 32 FrameTreeNode(NavigationControllerImpl* navigation_controller, |
| 33 NavigatorDelegate* navigator_delegate, | |
| 34 int64 frame_id, | |
| 35 const std::string& name, | |
| 29 scoped_ptr<RenderFrameHostImpl> render_frame_host); | 36 scoped_ptr<RenderFrameHostImpl> render_frame_host); |
| 30 ~FrameTreeNode(); | 37 ~FrameTreeNode(); |
| 31 | 38 |
| 32 void AddChild(scoped_ptr<FrameTreeNode> child); | 39 void AddChild(scoped_ptr<FrameTreeNode> child); |
| 33 void RemoveChild(int64 child_id); | 40 void RemoveChild(int64 child_id); |
| 34 | 41 |
| 35 // Transitional API allowing the RenderFrameHost of a FrameTreeNode | 42 // Transitional API allowing the RenderFrameHost of a FrameTreeNode |
| 36 // representing the main frame to be provided by someone else. After | 43 // representing the main frame to be provided by someone else. After |
| 37 // this is called, the FrameTreeNode no longer owns its RenderFrameHost. | 44 // this is called, the FrameTreeNode no longer owns its RenderFrameHost. |
| 38 // | 45 // |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 68 } | 75 } |
| 69 | 76 |
| 70 void set_current_url(const GURL& url) { | 77 void set_current_url(const GURL& url) { |
| 71 current_url_ = url; | 78 current_url_ = url; |
| 72 } | 79 } |
| 73 | 80 |
| 74 RenderFrameHostImpl* render_frame_host() const { | 81 RenderFrameHostImpl* render_frame_host() const { |
| 75 return render_frame_host_; | 82 return render_frame_host_; |
| 76 } | 83 } |
| 77 | 84 |
| 85 Navigator* navigator() { | |
| 86 return &navigator_; | |
| 87 } | |
| 88 | |
| 89 | |
| 78 private: | 90 private: |
| 79 // The unique identifier for the frame in the page. | 91 // The unique identifier for the frame in the page. |
| 80 int64 frame_id_; | 92 int64 frame_id_; |
| 81 | 93 |
| 82 // The assigned name of the frame. This name can be empty, unlike the unique | 94 // The assigned name of the frame. This name can be empty, unlike the unique |
| 83 // name generated internally in the DOM tree. | 95 // name generated internally in the DOM tree. |
| 84 std::string frame_name_; | 96 std::string frame_name_; |
| 85 | 97 |
| 86 // The immediate children of this specific frame. | 98 // The immediate children of this specific frame. |
| 87 ScopedVector<FrameTreeNode> children_; | 99 ScopedVector<FrameTreeNode> children_; |
| 88 | 100 |
| 101 // Used to perform navigation in the RenderFrameHosts associated with this | |
| 102 // FrameTreeNode. | |
| 103 Navigator navigator_; | |
|
Charlie Reis
2013/11/07 01:22:43
From our discussion, let's change this to have the
| |
| 104 | |
| 89 // When ResetForMainFrame() is called, this is set to false and the | 105 // When ResetForMainFrame() is called, this is set to false and the |
| 90 // |render_frame_host_| below is not deleted on destruction. | 106 // |render_frame_host_| below is not deleted on destruction. |
| 91 // | 107 // |
| 92 // For the mainframe, the FrameTree does not own the |render_frame_host_|. | 108 // For the mainframe, the FrameTree does not own the |render_frame_host_|. |
| 93 // This is a transitional wart because RenderViewHostManager does not yet | 109 // This is a transitional wart because RenderViewHostManager does not yet |
| 94 // have the bookkeeping logic to handle creating a pending RenderFrameHost | 110 // have the bookkeeping logic to handle creating a pending RenderFrameHost |
| 95 // along with a pending RenderViewHost. Thus, for the main frame, the | 111 // along with a pending RenderViewHost. Thus, for the main frame, the |
| 96 // RenderViewHost currently retains ownership and the FrameTreeNode should | 112 // RenderViewHost currently retains ownership and the FrameTreeNode should |
| 97 // not delete it on destruction. | 113 // not delete it on destruction. |
| 98 bool owns_render_frame_host_; | 114 bool owns_render_frame_host_; |
| 99 | 115 |
| 100 // The active RenderFrameHost for this frame. The FrameTreeNode does not | 116 // The active RenderFrameHost for this frame. The FrameTreeNode does not |
| 101 // always own this pointer. See comments above |owns_render_frame_host_|. | 117 // always own this pointer. See comments above |owns_render_frame_host_|. |
| 102 // TODO(ajwong): Replace with RenderFrameHostManager. | 118 // TODO(ajwong): Replace with RenderFrameHostManager. |
| 103 RenderFrameHostImpl* render_frame_host_; | 119 RenderFrameHostImpl* render_frame_host_; |
| 104 | 120 |
| 105 // Track the current frame's last committed URL, so we can estimate the | 121 // Track the current frame's last committed URL, so we can estimate the |
| 106 // process impact of out-of-process iframes. | 122 // process impact of out-of-process iframes. |
| 107 // TODO(creis): Remove this when we can store subframe URLs in the | 123 // TODO(creis): Remove this when we can store subframe URLs in the |
| 108 // NavigationController. | 124 // NavigationController. |
| 109 GURL current_url_; | 125 GURL current_url_; |
| 110 | 126 |
| 111 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); | 127 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); |
| 112 }; | 128 }; |
| 113 | 129 |
| 114 } // namespace content | 130 } // namespace content |
| 115 | 131 |
| 116 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 132 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
| OLD | NEW |