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

Unified Diff: webrtc/video/stats_counter.h

Issue 2494423002: Add ToString method to AggregatedStats and log stats at the end of a call. (Closed)
Patch Set: 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/video/send_delay_stats.cc ('k') | 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 08663f80155f1a6c582015e49e899e5550fa75eb..e84d73b758af20fedec697432ee6a4d945b45ffc 100644
--- a/webrtc/video/stats_counter.h
+++ b/webrtc/video/stats_counter.h
@@ -12,6 +12,7 @@
#define WEBRTC_VIDEO_STATS_COUNTER_H_
#include <memory>
+#include <string>
#include "webrtc/base/constructormagic.h"
#include "webrtc/typedefs.h"
@@ -31,6 +32,8 @@ class StatsCounterObserver {
};
struct AggregatedStats {
+ std::string ToString() const;
+
int64_t num_samples = 0;
int min = -1;
int max = -1;
« no previous file with comments | « webrtc/video/send_delay_stats.cc ('k') | webrtc/video/stats_counter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698