| Index: cc/trees/thread_proxy.h
|
| diff --git a/cc/trees/thread_proxy.h b/cc/trees/thread_proxy.h
|
| index aab7a43988ed5e5597efc47c0760eb55f5e3e426..baec1e01027ff6a7af844479bb5436e391783389 100644
|
| --- a/cc/trees/thread_proxy.h
|
| +++ b/cc/trees/thread_proxy.h
|
| @@ -107,10 +107,9 @@ class ThreadProxy : public Proxy,
|
| virtual void SetNeedsBeginFrame(bool enable) OVERRIDE;
|
| virtual void WillBeginImplFrame(const BeginFrameArgs& args) OVERRIDE;
|
| virtual void ScheduledActionSendBeginMainFrame() OVERRIDE;
|
| - virtual DrawSwapReadbackResult ScheduledActionDrawAndSwapIfPossible()
|
| - OVERRIDE;
|
| - virtual DrawSwapReadbackResult ScheduledActionDrawAndSwapForced() OVERRIDE;
|
| - virtual DrawSwapReadbackResult ScheduledActionDrawAndReadback() OVERRIDE;
|
| + virtual DrawResult ScheduledActionDrawAndSwapIfPossible() OVERRIDE;
|
| + virtual DrawResult ScheduledActionDrawAndSwapForced() OVERRIDE;
|
| + virtual DrawResult ScheduledActionDrawAndReadback() OVERRIDE;
|
| virtual void ScheduledActionCommit() OVERRIDE;
|
| virtual void ScheduledActionUpdateVisibleTiles() OVERRIDE;
|
| virtual void ScheduledActionActivatePendingTree() OVERRIDE;
|
| @@ -178,9 +177,9 @@ class ThreadProxy : public Proxy,
|
| RendererCapabilities* capabilities);
|
| void FinishGLOnImplThread(CompletionEvent* completion);
|
| void LayerTreeHostClosedOnImplThread(CompletionEvent* completion);
|
| - DrawSwapReadbackResult DrawSwapReadbackInternal(bool forced_draw,
|
| - bool swap_requested,
|
| - bool readback_requested);
|
| + DrawResult DrawSwapReadbackInternal(bool forced_draw,
|
| + bool swap_requested,
|
| + bool readback_requested);
|
| void ForceSerializeOnSwapBuffersOnImplThread(CompletionEvent* completion);
|
| void CheckOutputSurfaceStatusOnImplThread();
|
| void CommitPendingOnImplThreadForTesting(CommitPendingRequest* request);
|
|
|