| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "cc/output/compositor_frame.h" | 10 #include "cc/output/compositor_frame.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 class SurfaceId; | 22 class SurfaceId; |
| 23 struct SurfaceSequence; | 23 struct SurfaceSequence; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace IPC { | 26 namespace IPC { |
| 27 class Message; | 27 class Message; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 class RenderFrameProxyHost; | 31 class RenderFrameProxyHost; |
| 32 class RenderWidgetHostImpl; | |
| 33 class RenderWidgetHostViewBase; | 32 class RenderWidgetHostViewBase; |
| 34 class RenderWidgetHostViewChildFrame; | 33 class RenderWidgetHostViewChildFrame; |
| 35 class WebCursor; | 34 class WebCursor; |
| 36 | 35 |
| 37 // CrossProcessFrameConnector provides the platform view abstraction for | 36 // CrossProcessFrameConnector provides the platform view abstraction for |
| 38 // RenderWidgetHostViewChildFrame allowing RWHVChildFrame to remain ignorant | 37 // RenderWidgetHostViewChildFrame allowing RWHVChildFrame to remain ignorant |
| 39 // of RenderFrameHost. | 38 // of RenderFrameHost. |
| 40 // | 39 // |
| 41 // The RenderWidgetHostView of an out-of-process child frame needs to | 40 // The RenderWidgetHostView of an out-of-process child frame needs to |
| 42 // communicate with the RenderFrameProxyHost representing this frame in the | 41 // communicate with the RenderFrameProxyHost representing this frame in the |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 160 |
| 162 gfx::Rect child_frame_rect_; | 161 gfx::Rect child_frame_rect_; |
| 163 | 162 |
| 164 bool is_scroll_bubbling_; | 163 bool is_scroll_bubbling_; |
| 165 }; | 164 }; |
| 166 | 165 |
| 167 } // namespace content | 166 } // namespace content |
| 168 | 167 |
| 169 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ | 168 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ |
| 170 | 169 |
| OLD | NEW |