// 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 <stdint.h> #include "device/vr/util/sample_queue.h" namespace device { SampleQueue::SampleQueue(size_t window_size) : … { … } SampleQueue::~SampleQueue() = default; void SampleQueue::AddSample(int64_t value) { … } } // namespace device