hbos | d565b73 | 2016-08-30 14:04:35 -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 | |
hbos | 74e1a4f | 2016-09-15 23:33:01 -0700 | [diff] [blame] | 11 | #include "webrtc/api/stats/rtcstats_objects.h" |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 12 | |
| 13 | namespace webrtc { |
| 14 | |
hbos | fc5e050 | 2016-10-06 02:06:10 -0700 | [diff] [blame^] | 15 | WEBRTC_RTCSTATS_IMPL(RTCCertificateStats, RTCStats, "certificate", |
| 16 | &fingerprint, |
| 17 | &fingerprint_algorithm, |
| 18 | &base64_certificate, |
| 19 | &issuer_certificate_id); |
hbos | 6ab97ce | 2016-10-03 14:16:56 -0700 | [diff] [blame] | 20 | |
| 21 | RTCCertificateStats::RTCCertificateStats( |
| 22 | const std::string& id, int64_t timestamp_us) |
| 23 | : RTCCertificateStats(std::string(id), timestamp_us) { |
| 24 | } |
| 25 | |
| 26 | RTCCertificateStats::RTCCertificateStats( |
| 27 | std::string&& id, int64_t timestamp_us) |
| 28 | : RTCStats(std::move(id), timestamp_us), |
| 29 | fingerprint("fingerprint"), |
| 30 | fingerprint_algorithm("fingerprintAlgorithm"), |
| 31 | base64_certificate("base64Certificate"), |
| 32 | issuer_certificate_id("issuerCertificateId") { |
| 33 | } |
| 34 | |
hbos | fc5e050 | 2016-10-06 02:06:10 -0700 | [diff] [blame^] | 35 | RTCCertificateStats::RTCCertificateStats( |
| 36 | const RTCCertificateStats& other) |
| 37 | : RTCStats(other.id(), other.timestamp_us()), |
| 38 | fingerprint(other.fingerprint), |
| 39 | fingerprint_algorithm(other.fingerprint_algorithm), |
| 40 | base64_certificate(other.base64_certificate), |
| 41 | issuer_certificate_id(other.issuer_certificate_id) { |
| 42 | } |
| 43 | |
| 44 | RTCCertificateStats::~RTCCertificateStats() { |
| 45 | } |
| 46 | |
| 47 | WEBRTC_RTCSTATS_IMPL(RTCPeerConnectionStats, RTCStats, "peer-connection", |
| 48 | &data_channels_opened, |
| 49 | &data_channels_closed); |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 50 | |
| 51 | RTCPeerConnectionStats::RTCPeerConnectionStats( |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 52 | const std::string& id, int64_t timestamp_us) |
| 53 | : RTCPeerConnectionStats(std::string(id), timestamp_us) { |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | RTCPeerConnectionStats::RTCPeerConnectionStats( |
hbos | 0e6758d | 2016-08-31 07:57:36 -0700 | [diff] [blame] | 57 | std::string&& id, int64_t timestamp_us) |
| 58 | : RTCStats(std::move(id), timestamp_us), |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 59 | data_channels_opened("dataChannelsOpened"), |
| 60 | data_channels_closed("dataChannelsClosed") { |
| 61 | } |
| 62 | |
hbos | fc5e050 | 2016-10-06 02:06:10 -0700 | [diff] [blame^] | 63 | RTCPeerConnectionStats::RTCPeerConnectionStats( |
| 64 | const RTCPeerConnectionStats& other) |
| 65 | : RTCStats(other.id(), other.timestamp_us()), |
| 66 | data_channels_opened(other.data_channels_opened), |
| 67 | data_channels_closed(other.data_channels_closed) { |
| 68 | } |
| 69 | |
| 70 | RTCPeerConnectionStats::~RTCPeerConnectionStats() { |
| 71 | } |
| 72 | |
hbos | d565b73 | 2016-08-30 14:04:35 -0700 | [diff] [blame] | 73 | } // namespace webrtc |