| Index: cc/test/fake_layer_tree_host_impl_client.h
|
| diff --git a/cc/test/fake_layer_tree_host_impl_client.h b/cc/test/fake_layer_tree_host_impl_client.h
|
| index e50ca5704f4ffe9483062b6e3e80b8a0dc67b732..fc68a18334e87bc2b337ceebb780ee27c5ad2c0d 100644
|
| --- a/cc/test/fake_layer_tree_host_impl_client.h
|
| +++ b/cc/test/fake_layer_tree_host_impl_client.h
|
| @@ -12,25 +12,27 @@ namespace cc {
|
| class FakeLayerTreeHostImplClient : public LayerTreeHostImplClient {
|
| public:
|
| // LayerTreeHostImplClient implementation.
|
| - virtual void didLoseOutputSurfaceOnImplThread() OVERRIDE { }
|
| - virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { }
|
| - virtual void onVSyncParametersChanged(
|
| + virtual void DidLoseOutputSurfaceOnImplThread() OVERRIDE {}
|
| + virtual void OnSwapBuffersCompleteOnImplThread() OVERRIDE {}
|
| + virtual void OnVSyncParametersChanged(
|
| base::TimeTicks,
|
| - base::TimeDelta) OVERRIDE { }
|
| - virtual void onCanDrawStateChanged(bool) OVERRIDE { }
|
| - virtual void onHasPendingTreeStateChanged(bool) OVERRIDE { }
|
| - virtual void setNeedsRedrawOnImplThread() OVERRIDE { }
|
| - virtual void didUploadVisibleHighResolutionTileOnImplThread() OVERRIDE { }
|
| - virtual void setNeedsCommitOnImplThread() OVERRIDE { }
|
| - virtual void setNeedsManageTilesOnImplThread() OVERRIDE { }
|
| - virtual void postAnimationEventsToMainThreadOnImplThread(
|
| - scoped_ptr<AnimationEventsVector>,
|
| - base::Time) OVERRIDE { }
|
| - virtual bool reduceContentsTextureMemoryOnImplThread(size_t, int) OVERRIDE;
|
| - virtual void reduceWastedContentsTextureMemoryOnImplThread() OVERRIDE { }
|
| - virtual void sendManagedMemoryStats() OVERRIDE { }
|
| - virtual bool isInsideDraw() OVERRIDE;
|
| - virtual void renewTreePriority() OVERRIDE { }
|
| + base::TimeDelta) OVERRIDE {}
|
| + virtual void OnCanDrawStateChanged(bool can_draw) OVERRIDE {}
|
| + virtual void OnHasPendingTreeStateChanged(bool has_pending_tree) OVERRIDE {}
|
| + virtual void SetNeedsRedrawOnImplThread() OVERRIDE {}
|
| + virtual void DidUploadVisibleHighResolutionTileOnImplThread() OVERRIDE {}
|
| + virtual void SetNeedsCommitOnImplThread() OVERRIDE {}
|
| + virtual void SetNeedsManageTilesOnImplThread() OVERRIDE {}
|
| + virtual void PostAnimationEventsToMainThreadOnImplThread(
|
| + scoped_ptr<AnimationEventsVector> events,
|
| + base::Time wall_clock_time) OVERRIDE {}
|
| + virtual bool ReduceContentsTextureMemoryOnImplThread(
|
| + size_t limit_bytes,
|
| + int priority_cutoff) OVERRIDE;
|
| + virtual void ReduceWastedContentsTextureMemoryOnImplThread() OVERRIDE {}
|
| + virtual void SendManagedMemoryStats() OVERRIDE {}
|
| + virtual bool IsInsideDraw() OVERRIDE;
|
| + virtual void RenewTreePriority() OVERRIDE {}
|
| };
|
|
|
| } // namespace cc
|
|
|