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

Side by Side Diff: third_party/WebKit/public/platform/WebLayerTreeView.h

Issue 2644653003: Make OffscreenCanvas animation in sync with its placeholder canvas's parent frame rate (Closed)
Patch Set: fix based on both reviewers Created 3 years, 11 months 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 15 matching lines...) Expand all
26 #ifndef WebLayerTreeView_h 26 #ifndef WebLayerTreeView_h
27 #define WebLayerTreeView_h 27 #define WebLayerTreeView_h
28 28
29 #include "WebBrowserControlsState.h" 29 #include "WebBrowserControlsState.h"
30 #include "WebColor.h" 30 #include "WebColor.h"
31 #include "WebCommon.h" 31 #include "WebCommon.h"
32 #include "WebCompositorMutatorClient.h" 32 #include "WebCompositorMutatorClient.h"
33 #include "WebEventListenerProperties.h" 33 #include "WebEventListenerProperties.h"
34 #include "WebFloatPoint.h" 34 #include "WebFloatPoint.h"
35 #include "WebSize.h" 35 #include "WebSize.h"
36 #include "cc/surfaces/frame_sink_id.h"
36 37
37 namespace cc { 38 namespace cc {
38 class AnimationHost; 39 class AnimationHost;
39 } 40 }
40 41
41 namespace blink { 42 namespace blink {
42 43
43 class WebCompositeAndReadbackAsyncCallback; 44 class WebCompositeAndReadbackAsyncCallback;
44 class WebLayer; 45 class WebLayer;
45 class WebLayoutAndPaintAsyncCallback; 46 class WebLayoutAndPaintAsyncCallback;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 virtual void setShowFPSCounter(bool) {} 177 virtual void setShowFPSCounter(bool) {}
177 178
178 // Toggles the paint rects in the HUD layer 179 // Toggles the paint rects in the HUD layer
179 virtual void setShowPaintRects(bool) {} 180 virtual void setShowPaintRects(bool) {}
180 181
181 // Toggles the debug borders on layers 182 // Toggles the debug borders on layers
182 virtual void setShowDebugBorders(bool) {} 183 virtual void setShowDebugBorders(bool) {}
183 184
184 // Toggles scroll bottleneck rects on the HUD layer 185 // Toggles scroll bottleneck rects on the HUD layer
185 virtual void setShowScrollBottleneckRects(bool) {} 186 virtual void setShowScrollBottleneckRects(bool) {}
187
188 // Returns the FrameSinkId of the current render view
dcheng 2017/01/20 08:44:12 As in content::RenderView?
xlai (Olivia) 2017/01/20 16:36:22 I've edited the comment to reflect the origin of t
189 virtual cc::FrameSinkId getFrameSinkId() { return cc::FrameSinkId(); }
186 }; 190 };
187 191
188 } // namespace blink 192 } // namespace blink
189 193
190 #endif // WebLayerTreeView_h 194 #endif // WebLayerTreeView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698