| Index: cc/trees/layer_tree_host_client.h
|
| diff --git a/cc/trees/layer_tree_host_client.h b/cc/trees/layer_tree_host_client.h
|
| index e37d8e02600cc6ca90e653ac6215aeafe3031bf1..d871647dddec0efc2a672ea4a4c5bead4e7ef5cb 100644
|
| --- a/cc/trees/layer_tree_host_client.h
|
| +++ b/cc/trees/layer_tree_host_client.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CC_TREES_LAYER_TREE_HOST_CLIENT_H_
|
| #define CC_TREES_LAYER_TREE_HOST_CLIENT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "cc/debug/frame_timing_tracker.h"
|
|
|
| @@ -59,8 +60,9 @@ class LayerTreeHostClient {
|
| virtual void DidCommitAndDrawFrame() = 0;
|
| virtual void DidCompleteSwapBuffers() = 0;
|
| virtual void RecordFrameTimingEvents(
|
| - scoped_ptr<FrameTimingTracker::CompositeTimingSet> composite_events,
|
| - scoped_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events) = 0;
|
| + std::unique_ptr<FrameTimingTracker::CompositeTimingSet> composite_events,
|
| + std::unique_ptr<FrameTimingTracker::MainFrameTimingSet>
|
| + main_frame_events) = 0;
|
|
|
| // Called when page scale animation has completed.
|
| virtual void DidCompletePageScaleAnimation() = 0;
|
|
|