| Index: chrome/common/partial_circular_buffer_unittest.cc
|
| diff --git a/content/common/partial_circular_buffer_unittest.cc b/chrome/common/partial_circular_buffer_unittest.cc
|
| similarity index 97%
|
| rename from content/common/partial_circular_buffer_unittest.cc
|
| rename to chrome/common/partial_circular_buffer_unittest.cc
|
| index 5925667da3e413847d2618b8eda45512e785bdba..f855d27d8937200aecbbe4ac8e9190e19990e69b 100644
|
| --- a/content/common/partial_circular_buffer_unittest.cc
|
| +++ b/chrome/common/partial_circular_buffer_unittest.cc
|
| @@ -13,11 +13,9 @@
|
| // data is the same since the offset at each wrap is always the same.
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "content/common/partial_circular_buffer.h"
|
| +#include "chrome/common/partial_circular_buffer.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace content {
|
| -
|
| const uint32 kWrapPosition = 20;
|
| const uint8 kInputData[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14};
|
| const uint8 kOutputRefDataWrap[] =
|
| @@ -134,5 +132,3 @@ TEST_F(PartialCircularBufferTest, WrapOnceSmallerOutputBuffer) {
|
|
|
| EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
|
| }
|
| -
|
| -} // namespace content
|
|
|