| Index: remoting/protocol/video_frame_pump.h
|
| diff --git a/remoting/protocol/video_frame_pump.h b/remoting/protocol/video_frame_pump.h
|
| index 6fe57e84bed2aab0b94340d0a08010762a1c296f..925b9bc5d8f6d3a5523ce88c7091a4db56b45fbd 100644
|
| --- a/remoting/protocol/video_frame_pump.h
|
| +++ b/remoting/protocol/video_frame_pump.h
|
| @@ -9,9 +9,9 @@
|
| #include <stdint.h>
|
|
|
| #include <memory>
|
| +#include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "base/time/time.h"
|
| #include "base/timer/timer.h"
|
| @@ -179,7 +179,7 @@ class VideoFramePump : public VideoStream,
|
|
|
| bool send_pending_ = false;
|
|
|
| - ScopedVector<PacketWithTimestamps> pending_packets_;
|
| + std::vector<std::unique_ptr<PacketWithTimestamps>> pending_packets_;
|
|
|
| base::ThreadChecker thread_checker_;
|
|
|
|
|