| Index: media/filters/h264_bit_reader_unittest.cc
|
| diff --git a/content/common/gpu/media/h264_bit_reader_unittest.cc b/media/filters/h264_bit_reader_unittest.cc
|
| similarity index 96%
|
| rename from content/common/gpu/media/h264_bit_reader_unittest.cc
|
| rename to media/filters/h264_bit_reader_unittest.cc
|
| index a02a21c12547000a3f0b4ec14be8594f55f3451c..bdba4623fad4004c7020afb2905d3604e8f0ca2d 100644
|
| --- a/content/common/gpu/media/h264_bit_reader_unittest.cc
|
| +++ b/media/filters/h264_bit_reader_unittest.cc
|
| @@ -2,11 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "media/filters/h264_bit_reader.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#include "content/common/gpu/media/h264_bit_reader.h"
|
| -
|
| -using content::H264BitReader;
|
| +namespace media {
|
|
|
| TEST(H264BitReaderTest, ReadStreamWithoutEscapeAndTrailingZeroBytes) {
|
| H264BitReader reader;
|
| @@ -70,3 +69,5 @@ TEST(H264BitReaderTest, StopBitOccupyFullByte) {
|
| EXPECT_EQ(reader.NumBitsLeft(), 8);
|
| EXPECT_FALSE(reader.HasMoreRBSPData());
|
| }
|
| +
|
| +} // namespace media
|
|
|