Chromium Code Reviews| Index: media/formats/common/offset_byte_queue_unittest.cc |
| diff --git a/media/formats/common/offset_byte_queue_unittest.cc b/media/formats/common/offset_byte_queue_unittest.cc |
| index 3a3acd352679c7b3567747f1106c6abecb4e5e0f..a968e29f4738f834679fe4686c723ce2387730e5 100644 |
| --- a/media/formats/common/offset_byte_queue_unittest.cc |
| +++ b/media/formats/common/offset_byte_queue_unittest.cc |
| @@ -2,11 +2,13 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +#include "media/formats/common/offset_byte_queue.h" |
|
xhwang
2016/04/11 18:56:43
Where's the rule that this header should be the fi
Nico
2016/04/11 19:00:01
dcheng's script for adding these puts them there.
|
| + |
| #include <stdint.h> |
| #include <string.h> |
| -#include "base/memory/scoped_ptr.h" |
| -#include "media/formats/common/offset_byte_queue.h" |
| +#include <memory> |
| + |
| #include "testing/gtest/include/gtest/gtest.h" |
| namespace media { |
| @@ -28,7 +30,7 @@ class OffsetByteQueueTest : public testing::Test { |
| } |
| protected: |
| - scoped_ptr<OffsetByteQueue> queue_; |
| + std::unique_ptr<OffsetByteQueue> queue_; |
| }; |
| TEST_F(OffsetByteQueueTest, SetUp) { |