chromium/third_party/webrtc/stats/rtc_stats.cc

/*
 *  Copyright 2016 The WebRTC Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "api/stats/rtc_stats.h"

#include <cstdio>

#include "rtc_base/strings/string_builder.h"

namespace webrtc {

RTCStats::RTCStats(const RTCStats& other)
    :{}

RTCStats::~RTCStats() {}

bool RTCStats::operator==(const RTCStats& other) const {}

bool RTCStats::operator!=(const RTCStats& other) const {}

std::string RTCStats::ToJson() const {}

std::vector<Attribute> RTCStats::Attributes() const {}

std::vector<Attribute> RTCStats::AttributesImpl(
    size_t additional_capacity) const {}

}  // namespace webrtc