| 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/platform/WebInsecureRequestPolicy.h" | 14 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| 15 #include "third_party/WebKit/public/web/WebRemoteFrame.h" | 15 #include "third_party/WebKit/public/web/WebRemoteFrame.h" |
| 16 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" | 16 #include "third_party/WebKit/public/web/WebRemoteFrameClient.h" |
| 17 #include "url/origin.h" | 17 #include "url/origin.h" |
| 18 | 18 |
| 19 struct FrameMsg_BuffersSwapped_Params; | |
| 20 struct FrameMsg_CompositorFrameSwapped_Params; | |
| 21 | |
| 22 namespace blink { | 19 namespace blink { |
| 23 class WebInputEvent; | 20 class WebInputEvent; |
| 24 struct WebRect; | 21 struct WebRect; |
| 25 } | 22 } |
| 26 | 23 |
| 27 namespace cc { | 24 namespace cc { |
| 28 class SurfaceId; | 25 class SurfaceId; |
| 29 struct SurfaceSequence; | 26 struct SurfaceSequence; |
| 30 } | 27 } |
| 31 | 28 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 188 |
| 192 RenderViewImpl* render_view_; | 189 RenderViewImpl* render_view_; |
| 193 RenderWidget* render_widget_; | 190 RenderWidget* render_widget_; |
| 194 | 191 |
| 195 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 192 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
| 196 }; | 193 }; |
| 197 | 194 |
| 198 } // namespace | 195 } // namespace |
| 199 | 196 |
| 200 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 197 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
| OLD | NEW |