| 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/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; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; | 178 scoped_refptr<ChildFrameCompositingHelper> compositing_helper_; |
| 179 | 179 |
| 180 RenderViewImpl* render_view_; | 180 RenderViewImpl* render_view_; |
| 181 | 181 |
| 182 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); | 182 DISALLOW_COPY_AND_ASSIGN(RenderFrameProxy); |
| 183 }; | 183 }; |
| 184 | 184 |
| 185 } // namespace | 185 } // namespace |
| 186 | 186 |
| 187 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ | 187 #endif // CONTENT_RENDERER_RENDER_FRAME_PROXY_H_ |
| OLD | NEW |