// 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. #ifndef DEVICE_VR_UTIL_SLIDING_AVERAGE_H_ #define DEVICE_VR_UTIL_SLIDING_AVERAGE_H_ #include "base/component_export.h" #include "base/time/time.h" #include "device/vr/util/sample_queue.h" namespace device { class COMPONENT_EXPORT(DEVICE_VR_UTIL) SlidingAverage { … }; class COMPONENT_EXPORT(DEVICE_VR_UTIL) SlidingTimeDeltaAverage { … }; } // namespace device #endif // DEVICE_VR_UTIL_SLIDING_AVERAGE_H_