| 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 "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "ipc/ipc_listener.h" | 11 #include "ipc/ipc_listener.h" |
| 12 #include "ipc/ipc_sender.h" | 12 #include "ipc/ipc_sender.h" |
| 13 #include "third_party/WebKit/public/platform/WebFocusType.h" | 13 #include "third_party/WebKit/public/platform/WebFocusType.h" |
| 14 #include "third_party/WebKit/public/web/WebRemoteFrame.h" | 14 #include "third_party/WebKit/public/web/WebRemoteFrame.h" |
| 15 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" | 15 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
| 16 #include "url/origin.h" | 16 #include "url/origin.h" |
| 17 | 17 |
| 18 struct FrameMsg_BuffersSwapped_Params; | 18 struct FrameMsg_BuffersSwapped_Params; |
| 19 struct FrameMsg_CompositorFrameSwapped_Params; | 19 struct FrameMsg_CompositorFrameSwapped_Params; |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 class WebInputEvent; | 22 class WebInputEvent; |
| 23 struct WebRect; | 23 struct WebRect; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace cc { | 26 namespace cc { |
| 27 struct SurfaceId; | 27 class 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 ContentSecurityPolicyHeader; | 37 struct ContentSecurityPolicyHeader; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 189 |
| 190 RenderViewImpl* render_view_; | 190 RenderViewImpl* render_view_; |
| 191 RenderWidget* render_widget_; | 191 RenderWidget* render_widget_; |
| 192 | 192 |
| 193 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 193 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 } // namespace | 196 } // namespace |
| 197 | 197 |
| 198 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 198 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
| OLD | NEW |