| Index: remoting/client/software_video_renderer_unittest.cc | 
| diff --git a/remoting/client/software_video_renderer_unittest.cc b/remoting/client/software_video_renderer_unittest.cc | 
| index 7aa113c167fcbcaf90f9f3172784b401692bde86..b9541a97389221a836412c2594c2e9486112bb61 100644 | 
| --- a/remoting/client/software_video_renderer_unittest.cc | 
| +++ b/remoting/client/software_video_renderer_unittest.cc | 
| @@ -6,12 +6,12 @@ | 
|  | 
| #include <stdint.h> | 
|  | 
| +#include <memory> | 
| #include <utility> | 
| #include <vector> | 
|  | 
| #include "base/bind.h" | 
| #include "base/memory/ptr_util.h" | 
| -#include "base/memory/scoped_vector.h" | 
| #include "base/message_loop/message_loop.h" | 
| #include "base/run_loop.h" | 
| #include "base/threading/thread.h" | 
| @@ -156,7 +156,7 @@ class SoftwareVideoRendererTest : public ::testing::Test { | 
| TEST_F(SoftwareVideoRendererTest, DecodeFrame) { | 
| const int kFrameCount = 5; | 
|  | 
| -  ScopedVector<DesktopFrame> test_frames; | 
| +  std::vector<std::unique_ptr<DesktopFrame>> test_frames; | 
|  | 
| // std::vector<bool> doesn't allow to get pointer to individual values, so | 
| // int needs to be used instead. | 
|  |