// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/base/weighted_samples.h" namespace remoting { WeightedSamples::WeightedSamples(double weight_factor) : … { … } WeightedSamples::~WeightedSamples() = default; void WeightedSamples::Record(double value) { … } double WeightedSamples::WeightedAverage() const { … } } // namespace remoting