| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CROSS_PROCESS_FRAME_CONNECTOR_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ |
| 7 | 7 |
| 8 #include "cc/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
| 9 #include "ui/gfx/rect.h" | 9 #include "ui/gfx/rect.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 class WebInputEvent; | 12 class WebInputEvent; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace IPC { | 15 namespace IPC { |
| 16 class Message; | 16 class Message; |
| 17 } | 17 } |
| 18 | 18 |
| 19 struct FrameHostMsg_BuffersSwappedACK_Params; | 19 struct FrameHostMsg_BuffersSwappedACK_Params; |
| 20 struct FrameHostMsg_CompositorFrameSwappedACK_Params; | 20 struct FrameHostMsg_CompositorFrameSwappedACK_Params; |
| 21 struct FrameHostMsg_ReclaimCompositorResources_Params; | 21 struct FrameHostMsg_ReclaimCompositorResources_Params; |
| 22 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; | 22 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 class RenderFrameHostImpl; | 25 class RenderFrameProxyHost; |
| 26 class RenderWidgetHostImpl; | 26 class RenderWidgetHostImpl; |
| 27 class RenderWidgetHostViewChildFrame; | 27 class RenderWidgetHostViewChildFrame; |
| 28 | 28 |
| 29 // CrossProcessFrameConnector provides the platform view abstraction for | 29 // CrossProcessFrameConnector provides the platform view abstraction for |
| 30 // RenderWidgetHostViewChildFrame allowing RWHVChildFrame to remain ignorant | 30 // RenderWidgetHostViewChildFrame allowing RWHVChildFrame to remain ignorant |
| 31 // of RenderFrameHost. | 31 // of RenderFrameHost. |
| 32 // | 32 // |
| 33 // The RenderWidgetHostView of an out-of-process child frame needs to | 33 // The RenderWidgetHostView of an out-of-process child frame needs to |
| 34 // communicate with the swapped out RenderFrameHost representing this frame | 34 // communicate with the RenderFrameProxyHost representing this frame in the |
| 35 // in the process of the parent frame. For example, assume you have this page: | 35 // process of the parent frame. For example, assume you have this page: |
| 36 // | 36 // |
| 37 // ----------------- | 37 // ----------------- |
| 38 // | frame 1 | | 38 // | frame 1 | |
| 39 // | ----------- | | 39 // | ----------- | |
| 40 // | | frame 2 | | | 40 // | | frame 2 | | |
| 41 // | ----------- | | 41 // | ----------- | |
| 42 // ----------------- | 42 // ----------------- |
| 43 // | 43 // |
| 44 // If frames 1 and 2 are in process A and B, there are 4 RenderFrameHosts: | 44 // If frames 1 and 2 are in process A and B, there are 4 RenderFrameHosts: |
| 45 // A1 - RFH for frame 1 in process A | 45 // A1 - RFH for frame 1 in process A |
| 46 // B1 - Swapped out RFH for frame 1 in process B | 46 // B1 - RFPH for frame 1 in process B |
| 47 // A2 - Swapped out RFH for frame 2 in process A | 47 // A2 - RFPH for frame 2 in process A |
| 48 // B2 - RFH for frame 2 in process B | 48 // B2 - RFH for frame 2 in process B |
| 49 // | 49 // |
| 50 // B2, having a parent frame in a different process, will have a | 50 // B2, having a parent frame in a different process, will have a |
| 51 // RenderWidgetHostViewChildFrame. This RenderWidgetHostViewChildFrame needs | 51 // RenderWidgetHostViewChildFrame. This RenderWidgetHostViewChildFrame needs |
| 52 // to communicate with A2 because the embedding process is an abstract | 52 // to communicate with A2 because the embedding process is an abstract |
| 53 // for the child frame -- it needs information necessary for compositing child | 53 // for the child frame -- it needs information necessary for compositing child |
| 54 // frame textures, and also can pass platform messages such as view resizing. | 54 // frame textures, and also can pass platform messages such as view resizing. |
| 55 // CrossProcessFrameConnector bridges between B2's | 55 // CrossProcessFrameConnector bridges between B2's |
| 56 // RenderWidgetHostViewChildFrame and A2 to allow for this communication. | 56 // RenderWidgetHostViewChildFrame and A2 to allow for this communication. |
| 57 // (Note: B1 is only mentioned for completeness. It is not needed in this | 57 // (Note: B1 is only mentioned for completeness. It is not needed in this |
| 58 // example.) | 58 // example.) |
| 59 // | 59 // |
| 60 // CrossProcessFrameConnector objects are owned by the child frame's | 60 // CrossProcessFrameConnector objects are owned by the RenderFrameProxyHost |
| 61 // RenderFrameHostManager. When a child frame swaps, SetChildFrameView() is | 61 // in the child frame's RenderFrameHostManager corresponding to the parent's |
| 62 // called to update to the new view. | 62 // SiteInstance, A2 in the picture above. When a child frame navigates in a new |
| 63 // process, set_view() is called to update to the new view. |
| 63 // | 64 // |
| 64 class CrossProcessFrameConnector { | 65 class CrossProcessFrameConnector { |
| 65 public: | 66 public: |
| 66 // |frame_proxy_in_parent_renderer| corresponds to A2 in the example above. | 67 // |frame_proxy_in_parent_renderer| corresponds to A2 in the example above. |
| 67 explicit CrossProcessFrameConnector( | 68 explicit CrossProcessFrameConnector( |
| 68 RenderFrameHostImpl* frame_proxy_in_parent_renderer); | 69 RenderFrameProxyHost* frame_proxy_in_parent_renderer); |
| 69 virtual ~CrossProcessFrameConnector(); | 70 virtual ~CrossProcessFrameConnector(); |
| 70 | 71 |
| 71 bool OnMessageReceived(const IPC::Message &msg); | 72 bool OnMessageReceived(const IPC::Message &msg); |
| 72 | 73 |
| 73 // |view| corresponds to B2's RenderWidgetHostViewChildFrame in the example | 74 // |view| corresponds to B2's RenderWidgetHostViewChildFrame in the example |
| 74 // above. | 75 // above. |
| 75 void set_view(RenderWidgetHostViewChildFrame* view); | 76 void set_view(RenderWidgetHostViewChildFrame* view); |
| 77 RenderWidgetHostViewChildFrame* get_view_for_testing() { return view_; } |
| 76 | 78 |
| 77 void RenderProcessGone(); | 79 void RenderProcessGone(); |
| 78 | 80 |
| 79 // 'Platform' functionality exposed to RenderWidgetHostViewChildFrame. | 81 // 'Platform' functionality exposed to RenderWidgetHostViewChildFrame. |
| 80 // These methods can forward messages to the child frame proxy in the parent | 82 // These methods can forward messages to the child frame proxy in the parent |
| 81 // frame's renderer or attempt to handle them within the browser process. | 83 // frame's renderer or attempt to handle them within the browser process. |
| 82 void ChildFrameBuffersSwapped( | 84 void ChildFrameBuffersSwapped( |
| 83 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, | 85 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, |
| 84 int gpu_host_id); | 86 int gpu_host_id); |
| 85 | 87 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 97 void OnCompositorFrameSwappedACK( | 99 void OnCompositorFrameSwappedACK( |
| 98 const FrameHostMsg_CompositorFrameSwappedACK_Params& params); | 100 const FrameHostMsg_CompositorFrameSwappedACK_Params& params); |
| 99 void OnReclaimCompositorResources( | 101 void OnReclaimCompositorResources( |
| 100 const FrameHostMsg_ReclaimCompositorResources_Params& params); | 102 const FrameHostMsg_ReclaimCompositorResources_Params& params); |
| 101 void OnForwardInputEvent(const blink::WebInputEvent* event); | 103 void OnForwardInputEvent(const blink::WebInputEvent* event); |
| 102 void OnInitializeChildFrame(gfx::Rect frame_rect, float scale_factor); | 104 void OnInitializeChildFrame(gfx::Rect frame_rect, float scale_factor); |
| 103 | 105 |
| 104 void SetDeviceScaleFactor(float scale_factor); | 106 void SetDeviceScaleFactor(float scale_factor); |
| 105 void SetSize(gfx::Rect frame_rect); | 107 void SetSize(gfx::Rect frame_rect); |
| 106 | 108 |
| 107 // The RenderFrameHost that routes messages to the parent frame's renderer | 109 // The RenderFrameProxyHost that routes messages to the parent frame's |
| 108 // process. | 110 // renderer process. |
| 109 // TODO(kenrb): The type becomes RenderFrameProxyHost when that class comes | 111 RenderFrameProxyHost* frame_proxy_in_parent_renderer_; |
| 110 // to exist. | |
| 111 RenderFrameHostImpl* frame_proxy_in_parent_renderer_; | |
| 112 | 112 |
| 113 // The RenderWidgetHostView for the frame. Initially NULL. | 113 // The RenderWidgetHostView for the frame. Initially NULL. |
| 114 RenderWidgetHostViewChildFrame* view_; | 114 RenderWidgetHostViewChildFrame* view_; |
| 115 | 115 |
| 116 gfx::Rect child_frame_rect_; | 116 gfx::Rect child_frame_rect_; |
| 117 float device_scale_factor_; | 117 float device_scale_factor_; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace content | 120 } // namespace content |
| 121 | 121 |
| 122 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ | 122 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ |
| 123 | 123 |
| OLD | NEW |