| Index: cc/resources/memory_history.h
|
| diff --git a/cc/resources/memory_history.h b/cc/resources/memory_history.h
|
| index cdcc46aafaeaf6de5485db4e6cb4bb8d46817e88..2a396485b365e3397fce9e64061c505932bd278b 100644
|
| --- a/cc/resources/memory_history.h
|
| +++ b/cc/resources/memory_history.h
|
| @@ -8,8 +8,9 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "cc/debug/ring_buffer.h"
|
|
|
| @@ -18,7 +19,7 @@ namespace cc {
|
| // Maintains a history of memory for each frame.
|
| class MemoryHistory {
|
| public:
|
| - static scoped_ptr<MemoryHistory> Create();
|
| + static std::unique_ptr<MemoryHistory> Create();
|
|
|
| size_t HistorySize() const { return ring_buffer_.BufferSize(); }
|
|
|
|
|