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

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

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + autogen Created 5 years, 1 month 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
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_CHILD_FRAME_COMPOSITING_HELPER_H_ 5 #ifndef CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_
6 #define CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_ 6 #define CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 26 matching lines...) Expand all
37 class WebPluginContainer; 37 class WebPluginContainer;
38 class WebLayer; 38 class WebLayer;
39 } 39 }
40 40
41 namespace gfx { 41 namespace gfx {
42 class Rect; 42 class Rect;
43 class Size; 43 class Size;
44 } 44 }
45 45
46 struct FrameHostMsg_CompositorFrameSwappedACK_Params; 46 struct FrameHostMsg_CompositorFrameSwappedACK_Params;
47 struct FrameHostMsg_BuffersSwappedACK_Params;
48 struct FrameHostMsg_ReclaimCompositorResources_Params; 47 struct FrameHostMsg_ReclaimCompositorResources_Params;
49 48
50 namespace content { 49 namespace content {
51 50
52 class BrowserPlugin; 51 class BrowserPlugin;
53 class BrowserPluginManager; 52 class BrowserPluginManager;
54 class RenderFrameProxy; 53 class RenderFrameProxy;
55 class ThreadSafeSender; 54 class ThreadSafeSender;
56 55
57 class CONTENT_EXPORT ChildFrameCompositingHelper 56 class CONTENT_EXPORT ChildFrameCompositingHelper
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 scoped_refptr<cc::DelegatedRendererLayer> delegated_layer_; 150 scoped_refptr<cc::DelegatedRendererLayer> delegated_layer_;
152 scoped_ptr<blink::WebLayer> web_layer_; 151 scoped_ptr<blink::WebLayer> web_layer_;
153 blink::WebFrame* frame_; 152 blink::WebFrame* frame_;
154 153
155 DISALLOW_COPY_AND_ASSIGN(ChildFrameCompositingHelper); 154 DISALLOW_COPY_AND_ASSIGN(ChildFrameCompositingHelper);
156 }; 155 };
157 156
158 } // namespace content 157 } // namespace content
159 158
160 #endif // CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_ 159 #endif // CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698