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

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: 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 3daa798b33bbd3d72bcfc2e635c55b6a5eca9774..d039fa96fb79f0fe9eccd05177072812a2b47689 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