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

Unified Diff: content/renderer/media/webrtc_logging_handler_impl_unittest.cc

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Upload again (error last upload). 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: content/renderer/media/webrtc_logging_handler_impl_unittest.cc
diff --git a/content/renderer/media/webrtc_logging_handler_impl_unittest.cc b/content/renderer/media/webrtc_logging_handler_impl_unittest.cc
index fc70baa8aeedc01fa2c693e26ddc420121015de1..ac2406e831a9015264e089d7478a61ad43cf27b8 100644
--- a/content/renderer/media/webrtc_logging_handler_impl_unittest.cc
+++ b/content/renderer/media/webrtc_logging_handler_impl_unittest.cc
@@ -4,8 +4,8 @@
#include <string>
+#include "base/partial_circular_buffer.h"
#include "base/process_util.h"
-#include "content/common/partial_circular_buffer.h"
#include "content/renderer/media/webrtc_logging_handler_impl.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -30,7 +30,7 @@ TEST(WebRtcLoggingHandlerImplTest, Basic) {
logging_handler->LogMessage(kTestString);
logging_handler->LogMessage(kTestString);
- content::PartialCircularBuffer read_pcb(
+ base::PartialCircularBuffer read_pcb(
reinterpret_cast<uint8*>(shared_memory.memory()), kTestLogSize);
// Size is calculated as (sizeof(kTestString) - 1 for terminating null

Powered by Google App Engine
This is Rietveld 408576698