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

Unified Diff: webrtc/api/stats/rtcstats.h

Issue 2387343002: RTCStatsMember<bool> and RTCStatsMember<std::vector<bool>> added. (Closed)
Patch Set: Removed spaces between RTCStatsMember and variable name Created 4 years, 2 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/stats/rtcstats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/stats/rtcstats.h
diff --git a/webrtc/api/stats/rtcstats.h b/webrtc/api/stats/rtcstats.h
index 01dd1c3e215e4eed0d85884f653302ab1e807bc9..988291bd110a96c0bb0a324fb8b408e1c9843b7d 100644
--- a/webrtc/api/stats/rtcstats.h
+++ b/webrtc/api/stats/rtcstats.h
@@ -166,6 +166,7 @@ class RTCStatsMemberInterface {
public:
// Member value types.
enum Type {
+ kBool, // bool
kInt32, // int32_t
kUint32, // uint32_t
kInt64, // int64_t
@@ -173,6 +174,7 @@ class RTCStatsMemberInterface {
kDouble, // double
kString, // std::string
+ kSequenceBool, // std::vector<bool>
kSequenceInt32, // std::vector<int32_t>
kSequenceUint32, // std::vector<uint32_t>
kSequenceInt64, // std::vector<int64_t>
« no previous file with comments | « no previous file | webrtc/stats/rtcstats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698