// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/performance_manager/persistence/site_data/exponential_moving_average.h" #include <cmath> #include "base/check.h" namespace performance_manager { ExponentialMovingAverage::ExponentialMovingAverage(float alpha) : … { … } void ExponentialMovingAverage::AppendDatum(float datum) { … } void ExponentialMovingAverage::PrependDatum(float datum) { … } void ExponentialMovingAverage::Clear() { … } } // namespace performance_manager