| Index: content/renderer/media/media_recorder_handler.h
|
| diff --git a/content/renderer/media/media_recorder_handler.h b/content/renderer/media/media_recorder_handler.h
|
| index 8fa56c4ad4fa3c5739e06e0ecd05f3e4532aa879..d7d3d03ba634821204ca61e00f7a883ad6e3fab0 100644
|
| --- a/content/renderer/media/media_recorder_handler.h
|
| +++ b/content/renderer/media/media_recorder_handler.h
|
| @@ -9,7 +9,6 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/strings/string_piece.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -104,8 +103,8 @@ class CONTENT_EXPORT MediaRecorderHandler final
|
| // |client_| is a weak pointer, and is valid for the lifetime of this object.
|
| blink::WebMediaRecorderHandlerClient* client_;
|
|
|
| - ScopedVector<VideoTrackRecorder> video_recorders_;
|
| - ScopedVector<AudioTrackRecorder> audio_recorders_;
|
| + std::vector<std::unique_ptr<VideoTrackRecorder>> video_recorders_;
|
| + std::vector<std::unique_ptr<AudioTrackRecorder>> audio_recorders_;
|
|
|
| // Worker class doing the actual Webm Muxing work.
|
| std::unique_ptr<media::WebmMuxer> webm_muxer_;
|
|
|