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_RENDERER_RENDER_FRAME_PROXY_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "cc/surfaces/surface_id.h" |
10 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
11 #include "ipc/ipc_listener.h" | 12 #include "ipc/ipc_listener.h" |
12 #include "ipc/ipc_sender.h" | 13 #include "ipc/ipc_sender.h" |
13 #include "third_party/WebKit/public/platform/WebFocusType.h" | 14 #include "third_party/WebKit/public/platform/WebFocusType.h" |
14 #include "third_party/WebKit/public/web/WebRemoteFrame.h" | 15 #include "third_party/WebKit/public/web/WebRemoteFrame.h" |
15 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" | 16 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
16 #include "url/origin.h" | 17 #include "url/origin.h" |
17 | 18 |
18 struct FrameMsg_BuffersSwapped_Params; | 19 struct FrameMsg_BuffersSwapped_Params; |
19 struct FrameMsg_CompositorFrameSwapped_Params; | 20 struct FrameMsg_CompositorFrameSwapped_Params; |
20 | 21 |
21 namespace blink { | 22 namespace blink { |
22 class WebInputEvent; | 23 class WebInputEvent; |
23 struct WebRect; | 24 struct WebRect; |
24 } | 25 } |
25 | 26 |
26 namespace cc { | 27 namespace cc { |
27 struct SurfaceId; | |
28 struct SurfaceSequence; | 28 struct SurfaceSequence; |
29 } | 29 } |
30 | 30 |
31 namespace content { | 31 namespace content { |
32 | 32 |
33 class ChildFrameCompositingHelper; | 33 class ChildFrameCompositingHelper; |
34 class RenderFrameImpl; | 34 class RenderFrameImpl; |
35 class RenderViewImpl; | 35 class RenderViewImpl; |
36 class RenderWidget; | 36 class RenderWidget; |
37 struct FrameReplicationState; | 37 struct FrameReplicationState; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 | 190 |
191 RenderViewImpl* render_view_; | 191 RenderViewImpl* render_view_; |
192 RenderWidget* render_widget_; | 192 RenderWidget* render_widget_; |
193 | 193 |
194 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 194 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
195 }; | 195 }; |
196 | 196 |
197 } // namespace | 197 } // namespace |
198 | 198 |
199 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 199 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
OLD | NEW |