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

Unified Diff: webrtc/video/stats_counter.h

Issue 2236923002: Make variable for selecting if intervals without samples should be included in stats configurable (… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | webrtc/video/stats_counter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/stats_counter.h
diff --git a/webrtc/video/stats_counter.h b/webrtc/video/stats_counter.h
index 477e38e9007742204d9bbb14fa5a1f2090d053af..c272b6278d0961b69362748ab7272ba5c4b2af71 100644
--- a/webrtc/video/stats_counter.h
+++ b/webrtc/video/stats_counter.h
@@ -191,7 +191,9 @@ class PermilleCounter : public StatsCounter {
//
class RateCounter : public StatsCounter {
public:
- RateCounter(Clock* clock, StatsCounterObserver* observer);
+ RateCounter(Clock* clock,
+ StatsCounterObserver* observer,
+ bool include_empty_intervals);
~RateCounter() override {}
void Add(int sample);
@@ -211,7 +213,9 @@ class RateCounter : public StatsCounter {
//
class RateAccCounter : public StatsCounter {
public:
- RateAccCounter(Clock* clock, StatsCounterObserver* observer);
+ RateAccCounter(Clock* clock,
+ StatsCounterObserver* observer,
+ bool include_empty_intervals);
~RateAccCounter() override {}
void Set(int sample);
« no previous file with comments | « no previous file | webrtc/video/stats_counter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698