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

Unified Diff: webrtc/base/bitbuffer_unittest.cc

Issue 1821083002: Split ByteBuffer into writer/reader objects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « webrtc/api/sctputils.cc ('k') | webrtc/base/bytebuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/bitbuffer_unittest.cc
diff --git a/webrtc/base/bitbuffer_unittest.cc b/webrtc/base/bitbuffer_unittest.cc
index ce42257255a58241e22c5899ed737f31a6fcb876..7ba9c738bb9f37755cc1da394ec4af733b461f20 100644
--- a/webrtc/base/bitbuffer_unittest.cc
+++ b/webrtc/base/bitbuffer_unittest.cc
@@ -188,7 +188,7 @@ uint64_t GolombEncoded(uint32_t val) {
}
TEST(BitBufferTest, GolombUint32Values) {
- ByteBuffer byteBuffer;
+ ByteBufferWriter byteBuffer;
byteBuffer.Resize(16);
BitBuffer buffer(reinterpret_cast<const uint8_t*>(byteBuffer.Data()),
byteBuffer.Capacity());
« no previous file with comments | « webrtc/api/sctputils.cc ('k') | webrtc/base/bytebuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698