// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/peerconnection/linear_histogram.h" #include <cmath> #include "base/check.h" #include "base/check_op.h" namespace blink { LinearHistogram::LinearHistogram(float min_value, float max_value, wtf_size_t number_of_buckets) : … { … } void LinearHistogram::Add(float value) { … } float LinearHistogram::GetPercentile(float probability) const { … } wtf_size_t LinearHistogram::NumValues() const { … } } // namespace blink