| Index: base/partial_circular_buffer_unittest.cc
|
| diff --git a/content/common/partial_circular_buffer_unittest.cc b/base/partial_circular_buffer_unittest.cc
|
| similarity index 97%
|
| rename from content/common/partial_circular_buffer_unittest.cc
|
| rename to base/partial_circular_buffer_unittest.cc
|
| index 5925667da3e413847d2618b8eda45512e785bdba..677028485638e4bbc141b0e1b6477520c6891179 100644
|
| --- a/content/common/partial_circular_buffer_unittest.cc
|
| +++ b/base/partial_circular_buffer_unittest.cc
|
| @@ -13,10 +13,10 @@
|
| // 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 "base/partial_circular_buffer.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace content {
|
| +namespace base {
|
|
|
| const uint32 kWrapPosition = 20;
|
| const uint8 kInputData[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14};
|
| @@ -135,4 +135,4 @@ TEST_F(PartialCircularBufferTest, WrapOnceSmallerOutputBuffer) {
|
| EXPECT_EQ(0u, pcb_read_->Read(output_data, sizeof(output_data)));
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace base
|
|
|