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

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc

Issue 3012923002: Add the internals of RtcEvent's subclasses (Closed)
Patch Set: Rebased 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
Index: webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc b/webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc
index 427865c80618848df895084afb2d86b256dae511..7b7a388d9497a1bfff513d163ab0cc4eb7438bdc 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc
@@ -12,6 +12,11 @@
namespace webrtc {
+RtcEventProbeResultFailure::RtcEventProbeResultFailure(
+ int id,
+ ProbeFailureReason failure_reason)
+ : id_(id), failure_reason_(failure_reason) {}
+
RtcEvent::Type RtcEventProbeResultFailure::GetType() const {
return RtcEvent::Type::ProbeResultFailure;
}

Powered by Google App Engine
This is Rietveld 408576698