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

Unified Diff: webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h

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_cluster_created.h
diff --git a/webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h b/webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h
index cd453b5bb5d422793b3b09d020c5724f2eefacff..29a029064c059a7afdaf768a7f3a161a85f2aeb9 100644
--- a/webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h
+++ b/webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h
@@ -17,9 +17,18 @@ namespace webrtc {
class RtcEventProbeClusterCreated final : public RtcEvent {
public:
+ RtcEventProbeClusterCreated(int id,
+ int bitrate_bps,
+ int min_probes,
+ int min_byte);
~RtcEventProbeClusterCreated() override = default;
Type GetType() const override;
+
+ const int id_;
+ const int bitrate_bps_;
+ const int min_probes_;
+ const int min_byte_;
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698