| 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/basictypes.h" | 8 #include "base/basictypes.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/web/WebRemoteFrame.h" | 14 #include "third_party/WebKit/public/web/WebRemoteFrame.h" |
| 14 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" | 15 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
| 15 #include "url/origin.h" | 16 #include "url/origin.h" |
| 16 | 17 |
| 17 struct FrameMsg_BuffersSwapped_Params; | 18 struct FrameMsg_BuffersSwapped_Params; |
| 18 struct FrameMsg_CompositorFrameSwapped_Params; | 19 struct FrameMsg_CompositorFrameSwapped_Params; |
| 19 | 20 |
| 20 namespace blink { | 21 namespace blink { |
| 21 class WebInputEvent; | 22 class WebInputEvent; |
| 22 struct WebRect; | 23 struct WebRect; |
| 23 } | 24 } |
| 24 | 25 |
| 25 namespace cc { | 26 namespace cc { |
| 26 struct SurfaceId; | |
| 27 struct SurfaceSequence; | 27 struct SurfaceSequence; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 | 31 |
| 32 class ChildFrameCompositingHelper; | 32 class ChildFrameCompositingHelper; |
| 33 class RenderFrameImpl; | 33 class RenderFrameImpl; |
| 34 class RenderViewImpl; | 34 class RenderViewImpl; |
| 35 struct FrameReplicationState; | 35 struct FrameReplicationState; |
| 36 | 36 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; | 173 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; |
| 174 | 174 |
| 175 RenderViewImpl* render_view_; | 175 RenderViewImpl* render_view_; |
| 176 | 176 |
| 177 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 177 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
| 178 }; | 178 }; |
| 179 | 179 |
| 180 } // namespace | 180 } // namespace |
| 181 | 181 |
| 182 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 182 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
| OLD | NEW |