| Index: media/formats/mp2t/es_parser_adts.h
|
| diff --git a/media/formats/mp2t/es_parser_adts.h b/media/formats/mp2t/es_parser_adts.h
|
| index ab45de801fe46c4f7025a563d8be68849c31977c..bd7759d99104a7515684e4de8ea5e251f41178b9 100644
|
| --- a/media/formats/mp2t/es_parser_adts.h
|
| +++ b/media/formats/mp2t/es_parser_adts.h
|
| @@ -8,12 +8,12 @@
|
| #include <stdint.h>
|
|
|
| #include <list>
|
| +#include <memory>
|
| #include <utility>
|
|
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "media/base/audio_decoder_config.h"
|
| #include "media/base/media_export.h"
|
| @@ -74,7 +74,7 @@ class MEDIA_EXPORT EsParserAdts : public EsParser {
|
| bool sbr_in_mimetype_;
|
|
|
| // Interpolated PTS for frames that don't have one.
|
| - scoped_ptr<AudioTimestampHelper> audio_timestamp_helper_;
|
| + std::unique_ptr<AudioTimestampHelper> audio_timestamp_helper_;
|
|
|
| // Last audio config.
|
| AudioDecoderConfig last_audio_decoder_config_;
|
|
|