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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 namespace blink { | 67 namespace blink { |
68 namespace mojom { | 68 namespace mojom { |
69 class WebBluetoothService; | 69 class WebBluetoothService; |
70 } | 70 } |
71 } | 71 } |
72 | 72 |
73 namespace content { | 73 namespace content { |
74 | 74 |
75 class CrossProcessFrameConnector; | 75 class CrossProcessFrameConnector; |
76 class CrossSiteTransferringRequest; | 76 class CrossSiteTransferringRequest; |
77 class FrameMojoShell; | |
78 class FrameTree; | 77 class FrameTree; |
79 class FrameTreeNode; | 78 class FrameTreeNode; |
80 class NavigationHandleImpl; | 79 class NavigationHandleImpl; |
81 class PermissionServiceContext; | 80 class PermissionServiceContext; |
82 class RenderFrameHostDelegate; | 81 class RenderFrameHostDelegate; |
83 class RenderFrameProxyHost; | 82 class RenderFrameProxyHost; |
84 class RenderProcessHost; | 83 class RenderProcessHost; |
85 class RenderViewHostImpl; | 84 class RenderViewHostImpl; |
86 class RenderWidgetHostDelegate; | 85 class RenderWidgetHostDelegate; |
87 class RenderWidgetHostImpl; | 86 class RenderWidgetHostImpl; |
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 bool no_create_browser_accessibility_manager_for_testing_; | 995 bool no_create_browser_accessibility_manager_for_testing_; |
997 | 996 |
998 // PlzNavigate: Owns the stream used in navigations to store the body of the | 997 // PlzNavigate: Owns the stream used in navigations to store the body of the |
999 // response once it has started. | 998 // response once it has started. |
1000 std::unique_ptr<StreamHandle> stream_handle_; | 999 std::unique_ptr<StreamHandle> stream_handle_; |
1001 | 1000 |
1002 // Context shared for each mojom::PermissionService instance created for this | 1001 // Context shared for each mojom::PermissionService instance created for this |
1003 // RFH. | 1002 // RFH. |
1004 std::unique_ptr<PermissionServiceContext> permission_service_context_; | 1003 std::unique_ptr<PermissionServiceContext> permission_service_context_; |
1005 | 1004 |
1006 // The frame's Mojo Shell service. | |
1007 std::unique_ptr<FrameMojoShell> frame_mojo_shell_; | |
1008 | |
1009 // Holder of Mojo connection with ImageDownloader service in RenderFrame. | 1005 // Holder of Mojo connection with ImageDownloader service in RenderFrame. |
1010 content::mojom::ImageDownloaderPtr mojo_image_downloader_; | 1006 content::mojom::ImageDownloaderPtr mojo_image_downloader_; |
1011 | 1007 |
1012 // Tracks a navigation happening in this frame. Note that while there can be | 1008 // Tracks a navigation happening in this frame. Note that while there can be |
1013 // two navigations in the same FrameTreeNode, there can only be one | 1009 // two navigations in the same FrameTreeNode, there can only be one |
1014 // navigation per RenderFrameHost. | 1010 // navigation per RenderFrameHost. |
1015 // PlzNavigate: before the navigation is ready to be committed, the | 1011 // PlzNavigate: before the navigation is ready to be committed, the |
1016 // NavigationHandle for it is owned by the NavigationRequest. | 1012 // NavigationHandle for it is owned by the NavigationRequest. |
1017 std::unique_ptr<NavigationHandleImpl> navigation_handle_; | 1013 std::unique_ptr<NavigationHandleImpl> navigation_handle_; |
1018 | 1014 |
(...skipping 27 matching lines...) Expand all Loading... |
1046 | 1042 |
1047 // NOTE: This must be the last member. | 1043 // NOTE: This must be the last member. |
1048 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1044 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1049 | 1045 |
1050 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1046 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1051 }; | 1047 }; |
1052 | 1048 |
1053 } // namespace content | 1049 } // namespace content |
1054 | 1050 |
1055 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1051 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |