// 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. #ifndef COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_EXPONENTIAL_MOVING_AVERAGE_H_ #define COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_EXPONENTIAL_MOVING_AVERAGE_H_ #include <cstddef> namespace performance_manager { // This class is an implementation of an exponential moving average, // as described in // https://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average. class ExponentialMovingAverage { … }; } // namespace performance_manager #endif // COMPONENTS_PERFORMANCE_MANAGER_PERSISTENCE_SITE_DATA_EXPONENTIAL_MOVING_AVERAGE_H_