| Index: base/partial_circular_buffer.cc
|
| diff --git a/content/common/partial_circular_buffer.cc b/base/partial_circular_buffer.cc
|
| similarity index 98%
|
| rename from content/common/partial_circular_buffer.cc
|
| rename to base/partial_circular_buffer.cc
|
| index cba2243d1dfeb4263502eef05638d963a6743cb3..543e43fef628e06840de7a7912dff3d612c5274a 100644
|
| --- a/content/common/partial_circular_buffer.cc
|
| +++ b/base/partial_circular_buffer.cc
|
| @@ -2,13 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/common/partial_circular_buffer.h"
|
| +#include "base/partial_circular_buffer.h"
|
|
|
| #include <algorithm>
|
|
|
| #include "base/logging.h"
|
|
|
| -namespace content {
|
| +namespace base {
|
|
|
| namespace {
|
|
|
| @@ -163,4 +163,4 @@ void PartialCircularBuffer::DoWrite(void* dest, const void* src, uint32 num) {
|
| buffer_data_->end_position = position_;
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace base
|
|
|