| 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_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <iterator> | 10 #include <iterator> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "content/browser/frame_host/frame_tree_node.h" | 17 #include "content/browser/frame_host/frame_tree_node.h" |
| 18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 struct FrameOwnerProperties; | 22 struct FrameOwnerProperties; |
| 23 class Navigator; | 23 class Navigator; |
| 24 class RenderFrameHostDelegate; | 24 class RenderFrameHostDelegate; |
| 25 class RenderProcessHost; | |
| 26 class RenderViewHostDelegate; | 25 class RenderViewHostDelegate; |
| 27 class RenderViewHostImpl; | 26 class RenderViewHostImpl; |
| 28 class RenderFrameHostManager; | 27 class RenderFrameHostManager; |
| 29 class RenderWidgetHostDelegate; | 28 class RenderWidgetHostDelegate; |
| 30 | 29 |
| 31 // Represents the frame tree for a page. With the exception of the main frame, | 30 // Represents the frame tree for a page. With the exception of the main frame, |
| 32 // all FrameTreeNodes will be created/deleted in response to frame attach and | 31 // all FrameTreeNodes will be created/deleted in response to frame attach and |
| 33 // detach events in the DOM. | 32 // detach events in the DOM. |
| 34 // | 33 // |
| 35 // The main frame's FrameTreeNode is special in that it is reused. This allows | 34 // The main frame's FrameTreeNode is special in that it is reused. This allows |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 246 |
| 248 // Overall load progress. | 247 // Overall load progress. |
| 249 double load_progress_; | 248 double load_progress_; |
| 250 | 249 |
| 251 DISALLOW_COPY_AND_ASSIGN(FrameTree); | 250 DISALLOW_COPY_AND_ASSIGN(FrameTree); |
| 252 }; | 251 }; |
| 253 | 252 |
| 254 } // namespace content | 253 } // namespace content |
| 255 | 254 |
| 256 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_H_ | 255 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_H_ |
| OLD | NEW |