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

Unified Diff: Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.h

Issue 9950004: Merge 112446 - [chromium] Scheduler should not tell FrameRateController to begin a frame when we do… (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.h
===================================================================
--- Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.h (revision 112607)
+++ Source/WebCore/platform/graphics/chromium/cc/CCThreadProxy.h (working copy)
@@ -82,8 +82,8 @@
virtual bool canDraw();
virtual bool hasMoreResourceUpdates() const;
virtual void scheduledActionBeginFrame();
- virtual bool scheduledActionDrawAndSwapIfPossible();
- virtual void scheduledActionDrawAndSwapForced();
+ virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapIfPossible();
+ virtual CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapForced();
virtual void scheduledActionUpdateMoreResources();
virtual void scheduledActionCommit();
virtual void scheduledActionBeginContextRecreation();
@@ -127,7 +127,7 @@
void layerTreeHostClosedOnImplThread(CCCompletionEvent*);
void setFullRootLayerDamageOnImplThread();
void recreateContextOnImplThread(CCCompletionEvent*, GraphicsContext3D*, bool* recreateSucceeded, LayerRendererCapabilities*);
- bool scheduledActionDrawAndSwapInternal(bool forcedDraw);
+ CCScheduledActionDrawAndSwapResult scheduledActionDrawAndSwapInternal(bool forcedDraw);
// Accessed on main thread only.
bool m_animateRequested;

Powered by Google App Engine
This is Rietveld 408576698