// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_ #define MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_ #include "base/memory/raw_ptr.h" #include "base/synchronization/lock.h" #include "base/thread_annotations.h" #include "base/time/default_tick_clock.h" #include "media/base/media_export.h" #include "media/base/time_source.h" namespace media { // A time source that uses interpolation based on the system clock. class MEDIA_EXPORT WallClockTimeSource : public TimeSource { … }; } // namespace media #endif // MEDIA_BASE_WALL_CLOCK_TIME_SOURCE_H_