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

Side by Side Diff: webrtc/api/stats/rtcstats.h

Issue 2456463002: RTCOutboundRTPStreamStats added. (Closed)
Patch Set: Rebase and TODO for target_bitrate 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 unified diff | Download patch
« no previous file with comments | « webrtc/api/rtcstatscollector_unittest.cc ('k') | webrtc/api/stats/rtcstats_objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual const char* type() const = 0; 64 virtual const char* type() const = 0;
65 // Returns a vector of pointers to all the |RTCStatsMemberInterface| members 65 // Returns a vector of pointers to all the |RTCStatsMemberInterface| members
66 // of this class. This allows for iteration of members. For a given class, 66 // of this class. This allows for iteration of members. For a given class,
67 // |Members| always returns the same members in the same order. 67 // |Members| always returns the same members in the same order.
68 std::vector<const RTCStatsMemberInterface*> Members() const; 68 std::vector<const RTCStatsMemberInterface*> Members() const;
69 // Checks if the two stats objects are of the same type and have the same 69 // Checks if the two stats objects are of the same type and have the same
70 // member values. These operators are exposed for testing. 70 // member values. These operators are exposed for testing.
71 bool operator==(const RTCStats& other) const; 71 bool operator==(const RTCStats& other) const;
72 bool operator!=(const RTCStats& other) const; 72 bool operator!=(const RTCStats& other) const;
73 73
74 // Creates a human readable string representation of the report, listing all 74 // Creates a human readable string representation of the stats object, listing
75 // of its members (names and values). 75 // all of its members (names and values).
76 std::string ToString() const; 76 std::string ToString() const;
77 77
78 // Downcasts the stats object to an |RTCStats| subclass |T|. DCHECKs that the 78 // Downcasts the stats object to an |RTCStats| subclass |T|. DCHECKs that the
79 // object is of type |T|. 79 // object is of type |T|.
80 template<typename T> 80 template<typename T>
81 const T& cast_to() const { 81 const T& cast_to() const {
82 RTC_DCHECK_EQ(type(), T::kType); 82 RTC_DCHECK_EQ(type(), T::kType);
83 return static_cast<const T&>(*this); 83 return static_cast<const T&>(*this);
84 } 84 }
85 85
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 return &value_; 313 return &value_;
314 } 314 }
315 315
316 private: 316 private:
317 T value_; 317 T value_;
318 }; 318 };
319 319
320 } // namespace webrtc 320 } // namespace webrtc
321 321
322 #endif // WEBRTC_API_STATS_RTCSTATS_H_ 322 #endif // WEBRTC_API_STATS_RTCSTATS_H_
OLDNEW
« no previous file with comments | « webrtc/api/rtcstatscollector_unittest.cc ('k') | webrtc/api/stats/rtcstats_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698