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" |
| 11 #include "cc/surfaces/surface_id.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "ui/gfx/geometry/rect.h" | 13 #include "ui/gfx/geometry/rect.h" |
13 | 14 |
14 namespace blink { | 15 namespace blink { |
15 class WebInputEvent; | 16 class WebInputEvent; |
16 struct WebScreenInfo; | 17 struct WebScreenInfo; |
17 } | 18 } |
18 | 19 |
19 namespace cc { | 20 namespace cc { |
20 struct SurfaceId; | |
21 struct SurfaceSequence; | 21 struct SurfaceSequence; |
22 } | 22 } |
23 | 23 |
24 namespace IPC { | 24 namespace IPC { |
25 class Message; | 25 class Message; |
26 } | 26 } |
27 | 27 |
28 namespace content { | 28 namespace content { |
29 class RenderFrameProxyHost; | 29 class RenderFrameProxyHost; |
30 class RenderWidgetHostImpl; | 30 class RenderWidgetHostImpl; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 RenderWidgetHostViewChildFrame* view_; | 124 RenderWidgetHostViewChildFrame* view_; |
125 | 125 |
126 gfx::Rect child_frame_rect_; | 126 gfx::Rect child_frame_rect_; |
127 float device_scale_factor_; | 127 float device_scale_factor_; |
128 }; | 128 }; |
129 | 129 |
130 } // namespace content | 130 } // namespace content |
131 | 131 |
132 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ | 132 #endif // CONTENT_BROWSER_FRAME_HOST_CROSS_PROCESS_FRAME_CONNECTOR_H_ |
133 | 133 |
OLD | NEW |