| Index: media/formats/mp2t/es_parser.h
|
| diff --git a/media/formats/mp2t/es_parser.h b/media/formats/mp2t/es_parser.h
|
| index ee9d6e89c67a84e06a215cdd30bc0b1c4dac60d2..b9a813bade36d0d94c11ae30c67e638a5dcb459b 100644
|
| --- a/media/formats/mp2t/es_parser.h
|
| +++ b/media/formats/mp2t/es_parser.h
|
| @@ -8,6 +8,7 @@
|
| #include <stdint.h>
|
|
|
| #include <list>
|
| +#include <memory>
|
| #include <utility>
|
|
|
| #include "base/callback.h"
|
| @@ -68,7 +69,7 @@ class MEDIA_EXPORT EsParser {
|
| TimingDesc GetTimingDescriptor(int64_t es_byte_count);
|
|
|
| // Bytes of the ES stream that have not been emitted yet.
|
| - scoped_ptr<media::OffsetByteQueue> es_queue_;
|
| + std::unique_ptr<media::OffsetByteQueue> es_queue_;
|
|
|
| private:
|
| // Anchor some timing information into the ES queue.
|
|
|