Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: content/renderer/render_frame_proxy.h

Issue 1496103002: Reusing base::IdType<...> to implement SurfaceId. Base URL: https://chromium.googlesource.com/chromium/src.git@type-safe-id-base
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/child_frame_compositing_helper.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/renderer/child_frame_compositing_helper.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698