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

Unified Diff: webrtc/stats/rtcstats.cc

Issue 2527113002: Collecting RTCIceCandidatePairStats.transport_id and improved unittests (Closed)
Patch Set: Rebase with master and update rtcstats_integrationtest.cc to include transport_id Created 4 years, 1 month 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/stats/rtcstats_objects.h ('k') | webrtc/stats/rtcstats_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/stats/rtcstats.cc
diff --git a/webrtc/stats/rtcstats.cc b/webrtc/stats/rtcstats.cc
index ef3666605689b0d04ca7adc182f8b993760740a6..1968dd030e0fbc7b5f3300837f2ec880f538659a 100644
--- a/webrtc/stats/rtcstats.cc
+++ b/webrtc/stats/rtcstats.cc
@@ -51,10 +51,8 @@ std::string VectorOfStringsToString(const std::vector<T>& strings) {
} // namespace
bool RTCStats::operator==(const RTCStats& other) const {
- if (type() != other.type() || id() != other.id() ||
- timestamp_us() != other.timestamp_us()) {
+ if (type() != other.type() || id() != other.id())
return false;
- }
std::vector<const RTCStatsMemberInterface*> members = Members();
std::vector<const RTCStatsMemberInterface*> other_members = other.Members();
RTC_DCHECK_EQ(members.size(), other_members.size());
« no previous file with comments | « webrtc/api/stats/rtcstats_objects.h ('k') | webrtc/stats/rtcstats_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698