// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/base/simple_watch_timer.h" #include "base/location.h" #include "media/base/timestamp_constants.h" namespace media { namespace { constexpr base::TimeDelta kQueryInterval = …; } // namespace SimpleWatchTimer::SimpleWatchTimer(TickCB tick_cb, GetCurrentTimeCB get_current_time_cb) : … { … } SimpleWatchTimer::~SimpleWatchTimer() { … } void SimpleWatchTimer::Start() { … } void SimpleWatchTimer::Stop() { … } void SimpleWatchTimer::Tick() { … } } // namespace media