| Index: cc/trees/layer_tree_host_impl.h
|
| diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h
|
| index bffdc5cf131f4c0be6af7013a30686655837a898..bbd075ee016ec4329c859003746c7540e03d4e6e 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -104,11 +104,9 @@ class LayerTreeHostImplClient {
|
| virtual void OnCanDrawStateChanged(bool can_draw) = 0;
|
| virtual void NotifyReadyToActivate() = 0;
|
| virtual void NotifyReadyToDraw() = 0;
|
| - // Please call these 3 functions through
|
| - // LayerTreeHostImpl's SetNeedsRedraw(), SetNeedsRedrawRect() and
|
| - // SetNeedsOneBeginImplFrame().
|
| + // Please call these 2 functions through
|
| + // LayerTreeHostImpl's SetNeedsRedraw() and SetNeedsOneBeginImplFrame().
|
| virtual void SetNeedsRedrawOnImplThread() = 0;
|
| - virtual void SetNeedsRedrawRectOnImplThread(const gfx::Rect& damage_rect) = 0;
|
| virtual void SetNeedsOneBeginImplFrameOnImplThread() = 0;
|
| virtual void SetNeedsCommitOnImplThread() = 0;
|
| virtual void SetNeedsPrepareTilesOnImplThread() = 0;
|
| @@ -368,14 +366,11 @@ class CC_EXPORT LayerTreeHostImpl
|
|
|
| // CompositorFrameSinkClient implementation.
|
| void SetBeginFrameSource(BeginFrameSource* source) override;
|
| - void SetNeedsRedrawRect(const gfx::Rect& rect) override;
|
| void SetExternalTilePriorityConstraints(
|
| const gfx::Rect& viewport_rect,
|
| const gfx::Transform& transform) override;
|
| void DidLoseCompositorFrameSink() override;
|
| void DidSwapBuffersComplete() override;
|
| - void DidReceiveTextureInUseResponses(
|
| - const gpu::TextureInUseResponses& responses) override;
|
| void ReclaimResources(const ReturnedResourceArray& resources) override;
|
| void SetMemoryPolicy(const ManagedMemoryPolicy& policy) override;
|
| void SetTreeActivationCallback(const base::Closure& callback) override;
|
|
|