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

Unified Diff: webrtc/stats/rtcstats_objects.cc

Issue 2718383002: Rename RTCCodecStats.codec -> mimeType, parameters -> sdpFmtpLine. (Closed)
Patch Set: Created 3 years, 10 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/pc/rtcstatscollector_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/stats/rtcstats_objects.cc
diff --git a/webrtc/stats/rtcstats_objects.cc b/webrtc/stats/rtcstats_objects.cc
index 68b33f58c2514229345a6dbcb4364cab150437db..9a7ebede6e62aea5ba2384c14f54ec8c578c3c48 100644
--- a/webrtc/stats/rtcstats_objects.cc
+++ b/webrtc/stats/rtcstats_objects.cc
@@ -72,10 +72,10 @@ RTCCertificateStats::~RTCCertificateStats() {
WEBRTC_RTCSTATS_IMPL(RTCCodecStats, RTCStats, "codec",
&payload_type,
- &codec,
+ &mime_type,
&clock_rate,
&channels,
- &parameters,
+ &sdp_fmtp_line,
&implementation);
RTCCodecStats::RTCCodecStats(
@@ -87,10 +87,10 @@ RTCCodecStats::RTCCodecStats(
std::string&& id, int64_t timestamp_us)
: RTCStats(std::move(id), timestamp_us),
payload_type("payloadType"),
- codec("codec"),
+ mime_type("mimeType"),
clock_rate("clockRate"),
channels("channels"),
- parameters("parameters"),
+ sdp_fmtp_line("sdpFmtpLine"),
implementation("implementation") {
}
@@ -98,10 +98,10 @@ RTCCodecStats::RTCCodecStats(
const RTCCodecStats& other)
: RTCStats(other.id(), other.timestamp_us()),
payload_type(other.payload_type),
- codec(other.codec),
+ mime_type(other.mime_type),
clock_rate(other.clock_rate),
channels(other.channels),
- parameters(other.parameters),
+ sdp_fmtp_line(other.sdp_fmtp_line),
implementation(other.implementation) {
}
« no previous file with comments | « webrtc/pc/rtcstatscollector_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698