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

Unified Diff: webrtc/common_types.h

Issue 3006343002: Add explicit copy constructors to RTPHeader and RTPHeaderExtension (Closed)
Patch Set: Created 3 years, 3 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 | « no previous file | webrtc/common_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_types.h
diff --git a/webrtc/common_types.h b/webrtc/common_types.h
index 49b42ac37656091140a5d2a1476fd9a20fac4b13..0a98b4e8680a6cbf31c3b1ac357a688878492dbc 100644
--- a/webrtc/common_types.h
+++ b/webrtc/common_types.h
@@ -792,6 +792,7 @@ typedef StringRtpHeaderExtension Mid;
struct RTPHeaderExtension {
RTPHeaderExtension();
+ RTPHeaderExtension(const RTPHeaderExtension& other);
danilchap 2017/09/11 13:34:21 https://google.github.io/styleguide/cppguide.html#
eladalon 2017/09/11 14:15:03 Done.
bool hasTransmissionTimeOffset;
int32_t transmissionTimeOffset;
@@ -835,6 +836,7 @@ struct RTPHeaderExtension {
struct RTPHeader {
RTPHeader();
+ RTPHeader(const RTPHeader& other);
bool markerBit;
uint8_t payloadType;
« no previous file with comments | « no previous file | webrtc/common_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698