hbos | 27e177c | 2016-09-19 06:05:56 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include "webrtc/stats/test/rtcteststats.h" |
| 12 | |
| 13 | namespace webrtc { |
| 14 | |
hbos | fc5e050 | 2016-10-06 02:06:10 -0700 | [diff] [blame] | 15 | WEBRTC_RTCSTATS_IMPL(RTCTestStats, RTCStats, "test-stats", |
| 16 | &m_bool, |
| 17 | &m_int32, |
| 18 | &m_uint32, |
| 19 | &m_int64, |
| 20 | &m_uint64, |
| 21 | &m_double, |
| 22 | &m_string, |
| 23 | &m_sequence_bool, |
| 24 | &m_sequence_int32, |
| 25 | &m_sequence_uint32, |
| 26 | &m_sequence_int64, |
| 27 | &m_sequence_uint64, |
| 28 | &m_sequence_double, |
| 29 | &m_sequence_string); |
hbos | 27e177c | 2016-09-19 06:05:56 -0700 | [diff] [blame] | 30 | |
| 31 | RTCTestStats::RTCTestStats(const std::string& id, int64_t timestamp_us) |
| 32 | : RTCStats(id, timestamp_us), |
hbos | b20f387 | 2016-10-04 14:37:11 -0700 | [diff] [blame] | 33 | m_bool("mBool"), |
hbos | 27e177c | 2016-09-19 06:05:56 -0700 | [diff] [blame] | 34 | m_int32("mInt32"), |
| 35 | m_uint32("mUint32"), |
| 36 | m_int64("mInt64"), |
| 37 | m_uint64("mUint64"), |
| 38 | m_double("mDouble"), |
| 39 | m_string("mString"), |
hbos | b20f387 | 2016-10-04 14:37:11 -0700 | [diff] [blame] | 40 | m_sequence_bool("mSequenceBool"), |
hbos | 27e177c | 2016-09-19 06:05:56 -0700 | [diff] [blame] | 41 | m_sequence_int32("mSequenceInt32"), |
| 42 | m_sequence_uint32("mSequenceUint32"), |
| 43 | m_sequence_int64("mSequenceInt64"), |
| 44 | m_sequence_uint64("mSequenceUint64"), |
| 45 | m_sequence_double("mSequenceDouble"), |
| 46 | m_sequence_string("mSequenceString") { |
| 47 | } |
| 48 | |
hbos | fc5e050 | 2016-10-06 02:06:10 -0700 | [diff] [blame] | 49 | RTCTestStats::RTCTestStats(const RTCTestStats& other) |
| 50 | : RTCStats(other.id(), other.timestamp_us()), |
| 51 | m_bool(other.m_bool), |
| 52 | m_int32(other.m_int32), |
| 53 | m_uint32(other.m_uint32), |
| 54 | m_int64(other.m_int64), |
| 55 | m_uint64(other.m_uint64), |
| 56 | m_double(other.m_double), |
| 57 | m_string(other.m_string), |
| 58 | m_sequence_bool(other.m_sequence_bool), |
| 59 | m_sequence_int32(other.m_sequence_int32), |
| 60 | m_sequence_uint32(other.m_sequence_uint32), |
| 61 | m_sequence_int64(other.m_sequence_int64), |
| 62 | m_sequence_uint64(other.m_sequence_uint64), |
| 63 | m_sequence_double(other.m_sequence_double), |
| 64 | m_sequence_string(other.m_sequence_string) { |
| 65 | } |
| 66 | |
| 67 | RTCTestStats::~RTCTestStats() { |
| 68 | } |
| 69 | |
hbos | 27e177c | 2016-09-19 06:05:56 -0700 | [diff] [blame] | 70 | } // namespace webrtc |