Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(433)

Unified Diff: base/partial_circular_buffer_unittest.cc

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed two files Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698