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

Unified Diff: webrtc/common_types.cc

Issue 2054373002: FileWrapper[Impl] modifications and actually remove the "Impl" class. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix use of ASSERT instead of ASSERT_TRUE in test Created 4 years, 6 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/common_types.h ('k') | webrtc/modules/audio_device/audio_device_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_types.cc
diff --git a/webrtc/common_types.cc b/webrtc/common_types.cc
index d08630b46dd291df0842aa54655c07132336fa47..86e7813e58fe439abc4a61da94cc19d84425bd01 100644
--- a/webrtc/common_types.cc
+++ b/webrtc/common_types.cc
@@ -14,10 +14,6 @@
namespace webrtc {
-int InStream::Rewind() { return -1; }
-
-int OutStream::Rewind() { return -1; }
-
StreamDataCounters::StreamDataCounters() : first_packet_time_ms(-1) {}
RTPHeaderExtension::RTPHeaderExtension()
@@ -40,11 +36,10 @@ RTPHeader::RTPHeader()
timestamp(0),
ssrc(0),
numCSRCs(0),
+ arrOfCSRCs(),
paddingLength(0),
headerLength(0),
payload_type_frequency(0),
- extension() {
- memset(&arrOfCSRCs, 0, sizeof(arrOfCSRCs));
-}
+ extension() {}
} // namespace webrtc
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/modules/audio_device/audio_device_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698