blob: b90941a5c00b48e79148fd50dc208e2755d9f711 [file] [log] [blame]
hbosd565b732016-08-30 14:04:35 -07001/*
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
hbos74e1a4f2016-09-15 23:33:01 -070011#include "webrtc/api/stats/rtcstats_objects.h"
hbosd565b732016-08-30 14:04:35 -070012
13namespace webrtc {
14
hbosfc5e0502016-10-06 02:06:10 -070015WEBRTC_RTCSTATS_IMPL(RTCCertificateStats, RTCStats, "certificate",
16 &fingerprint,
17 &fingerprint_algorithm,
18 &base64_certificate,
19 &issuer_certificate_id);
hbos6ab97ce2016-10-03 14:16:56 -070020
21RTCCertificateStats::RTCCertificateStats(
22 const std::string& id, int64_t timestamp_us)
23 : RTCCertificateStats(std::string(id), timestamp_us) {
24}
25
26RTCCertificateStats::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
hbosfc5e0502016-10-06 02:06:10 -070035RTCCertificateStats::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
44RTCCertificateStats::~RTCCertificateStats() {
45}
46
47WEBRTC_RTCSTATS_IMPL(RTCPeerConnectionStats, RTCStats, "peer-connection",
48 &data_channels_opened,
49 &data_channels_closed);
hbosd565b732016-08-30 14:04:35 -070050
51RTCPeerConnectionStats::RTCPeerConnectionStats(
hbos0e6758d2016-08-31 07:57:36 -070052 const std::string& id, int64_t timestamp_us)
53 : RTCPeerConnectionStats(std::string(id), timestamp_us) {
hbosd565b732016-08-30 14:04:35 -070054}
55
56RTCPeerConnectionStats::RTCPeerConnectionStats(
hbos0e6758d2016-08-31 07:57:36 -070057 std::string&& id, int64_t timestamp_us)
58 : RTCStats(std::move(id), timestamp_us),
hbosd565b732016-08-30 14:04:35 -070059 data_channels_opened("dataChannelsOpened"),
60 data_channels_closed("dataChannelsClosed") {
61}
62
hbosfc5e0502016-10-06 02:06:10 -070063RTCPeerConnectionStats::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
70RTCPeerConnectionStats::~RTCPeerConnectionStats() {
71}
72
hbosd565b732016-08-30 14:04:35 -070073} // namespace webrtc