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_RENDER_FRAME_HOST_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 class RenderFrameHost; | 34 class RenderFrameHost; |
35 class RenderFrameHostDelegate; | 35 class RenderFrameHostDelegate; |
36 class RenderFrameHost; | 36 class RenderFrameHost; |
37 class RenderFrameHostImpl; | 37 class RenderFrameHostImpl; |
38 class RenderFrameHostManagerTest; | 38 class RenderFrameHostManagerTest; |
39 class RenderFrameProxyHost; | 39 class RenderFrameProxyHost; |
40 class RenderViewHost; | 40 class RenderViewHost; |
41 class RenderViewHostImpl; | 41 class RenderViewHostImpl; |
42 class RenderWidgetHostDelegate; | 42 class RenderWidgetHostDelegate; |
43 class RenderWidgetHostView; | 43 class RenderWidgetHostView; |
| 44 class StreamHandle; |
44 class TestWebContents; | 45 class TestWebContents; |
45 class WebUIImpl; | 46 class WebUIImpl; |
46 | 47 |
47 // Manages RenderFrameHosts for a FrameTreeNode. This class acts as a state | 48 // Manages RenderFrameHosts for a FrameTreeNode. This class acts as a state |
48 // machine to make cross-process navigations in a frame possible. | 49 // machine to make cross-process navigations in a frame possible. |
49 class CONTENT_EXPORT RenderFrameHostManager : public NotificationObserver { | 50 class CONTENT_EXPORT RenderFrameHostManager : public NotificationObserver { |
50 public: | 51 public: |
51 // Functions implemented by our owner that we need. | 52 // Functions implemented by our owner that we need. |
52 // | 53 // |
53 // TODO(brettw) Clean this up! These are all the functions in WebContentsImpl | 54 // TODO(brettw) Clean this up! These are all the functions in WebContentsImpl |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 NotificationRegistrar registrar_; | 532 NotificationRegistrar registrar_; |
532 | 533 |
533 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_; | 534 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_; |
534 | 535 |
535 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager); | 536 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager); |
536 }; | 537 }; |
537 | 538 |
538 } // namespace content | 539 } // namespace content |
539 | 540 |
540 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ | 541 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
OLD | NEW |