| 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 a6448c126fa09b7011ab14d7b7a2cbe0755740e6..5a66713837955eb074a5c1cc9b09837bd2a36c28 100644
|
| --- a/cc/trees/layer_tree_host_impl.h
|
| +++ b/cc/trees/layer_tree_host_impl.h
|
| @@ -31,7 +31,6 @@
|
| #include "cc/quads/render_pass.h"
|
| #include "cc/resources/resource_provider.h"
|
| #include "cc/resources/tile_manager.h"
|
| -#include "cc/scheduler/begin_frame_source.h"
|
| #include "cc/scheduler/draw_result.h"
|
| #include "skia/ext/refptr.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| @@ -112,7 +111,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| public OutputSurfaceClient,
|
| public TopControlsManagerClient,
|
| public ScrollbarAnimationControllerClient,
|
| - public BeginFrameSourceMixIn,
|
| public base::SupportsWeakPtr<LayerTreeHostImpl> {
|
| public:
|
| static scoped_ptr<LayerTreeHostImpl> Create(
|
| @@ -125,9 +123,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| int id);
|
| ~LayerTreeHostImpl() override;
|
|
|
| - // BeginFrameSourceMixIn implementation
|
| - void OnNeedsBeginFramesChange(bool needs_begin_frames) override;
|
| -
|
| // InputHandler implementation
|
| void BindToClient(InputHandlerClient* client) override;
|
| InputHandler::ScrollStatus ScrollBegin(
|
| @@ -252,8 +247,6 @@ class CC_EXPORT LayerTreeHostImpl
|
| void CommitVSyncParameters(base::TimeTicks timebase,
|
| base::TimeDelta interval) override;
|
| void SetNeedsRedrawRect(const gfx::Rect& rect) override;
|
| - void BeginFrame(const BeginFrameArgs& args) override;
|
| -
|
| void SetExternalDrawConstraints(
|
| const gfx::Transform& transform,
|
| const gfx::Rect& viewport,
|
| @@ -425,7 +418,7 @@ class CC_EXPORT LayerTreeHostImpl
|
| return begin_impl_frame_interval_;
|
| }
|
|
|
| - void AsValueInto(base::debug::TracedValue* value) const override;
|
| + void AsValueInto(base::debug::TracedValue* value) const;
|
| void AsValueWithFrameInto(FrameData* frame,
|
| base::debug::TracedValue* value) const;
|
| scoped_refptr<base::debug::ConvertableToTraceFormat> AsValue() const;
|
|
|