| Index: cc/raster/single_thread_task_graph_runner.h
|
| diff --git a/cc/raster/single_thread_task_graph_runner.h b/cc/raster/single_thread_task_graph_runner.h
|
| index 3e8dec076e02af36a9e7c6eb64bd13438c32f499..a8609cb25c0b292684d799ecce1210981c684537 100644
|
| --- a/cc/raster/single_thread_task_graph_runner.h
|
| +++ b/cc/raster/single_thread_task_graph_runner.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef CC_RASTER_SINGLE_THREAD_TASK_GRAPH_RUNNER_H_
|
| #define CC_RASTER_SINGLE_THREAD_TASK_GRAPH_RUNNER_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/synchronization/condition_variable.h"
|
| #include "base/threading/simple_thread.h"
|
| #include "cc/raster/task_graph_runner.h"
|
| @@ -43,7 +44,7 @@ class CC_EXPORT SingleThreadTaskGraphRunner
|
| // Returns true if there was a task to run.
|
| bool RunTaskWithLockAcquired();
|
|
|
| - scoped_ptr<base::SimpleThread> thread_;
|
| + std::unique_ptr<base::SimpleThread> thread_;
|
|
|
| // Lock to exclusively access all the following members that are used to
|
| // implement the TaskRunner interfaces.
|
|
|