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

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: rebase again Created 3 years, 10 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 // For when the embedder itself change scales on the page (e.g. devtools) 157 // For when the embedder itself change scales on the page (e.g. devtools)
157 // and wants all of the content at the new scale to be crisp. 158 // and wants all of the content at the new scale to be crisp.
158 virtual void forceRecalculateRasterScales() {} 159 virtual void forceRecalculateRasterScales() {}
159 160
160 // Input properties --------------------------------------------------- 161 // Input properties ---------------------------------------------------
161 virtual void setEventListenerProperties(WebEventListenerClass, 162 virtual void setEventListenerProperties(WebEventListenerClass,
162 WebEventListenerProperties) {} 163 WebEventListenerProperties) {}
163 virtual void updateTouchRectsForSubframeIfNecessary() {} 164 virtual void updateTouchRectsForSubframeIfNecessary() {}
164 virtual void setHaveScrollEventHandlers(bool) {} 165 virtual void setHaveScrollEventHandlers(bool) {}
165 166
167 // Returns the FrameSinkId of the widget associated with this layer tree view.
168 virtual cc::FrameSinkId getFrameSinkId() { return cc::FrameSinkId(); }
169
166 // Debugging / dangerous --------------------------------------------- 170 // Debugging / dangerous ---------------------------------------------
167 171
168 virtual WebEventListenerProperties eventListenerProperties( 172 virtual WebEventListenerProperties eventListenerProperties(
169 WebEventListenerClass) const { 173 WebEventListenerClass) const {
170 return WebEventListenerProperties::Nothing; 174 return WebEventListenerProperties::Nothing;
171 } 175 }
172 virtual bool haveScrollEventHandlers() const { return false; } 176 virtual bool haveScrollEventHandlers() const { return false; }
173 177
174 virtual int layerTreeId() const { return 0; } 178 virtual int layerTreeId() const { return 0; }
175 179
176 // Toggles the FPS counter in the HUD layer 180 // Toggles the FPS counter in the HUD layer
177 virtual void setShowFPSCounter(bool) {} 181 virtual void setShowFPSCounter(bool) {}
178 182
179 // Toggles the paint rects in the HUD layer 183 // Toggles the paint rects in the HUD layer
180 virtual void setShowPaintRects(bool) {} 184 virtual void setShowPaintRects(bool) {}
181 185
182 // Toggles the debug borders on layers 186 // Toggles the debug borders on layers
183 virtual void setShowDebugBorders(bool) {} 187 virtual void setShowDebugBorders(bool) {}
184 188
185 // Toggles scroll bottleneck rects on the HUD layer 189 // Toggles scroll bottleneck rects on the HUD layer
186 virtual void setShowScrollBottleneckRects(bool) {} 190 virtual void setShowScrollBottleneckRects(bool) {}
187 }; 191 };
188 192
189 } // namespace blink 193 } // namespace blink
190 194
191 #endif // WebLayerTreeView_h 195 #endif // WebLayerTreeView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698