// Copyright 2024 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/cast/test/fake_openscreen_clock.h" #include "base/test/simple_test_tick_clock.h" #include "base/time/time.h" namespace media::cast { base::SimpleTestTickClock* g_tick_clock = …; base::TimeTicks* g_origin_ticks = …; // static void FakeOpenscreenClock::SetTickClock(base::SimpleTestTickClock* tick_clock) { … } // static void FakeOpenscreenClock::ClearTickClock() { … } // static openscreen::Clock::time_point FakeOpenscreenClock::now() { … } } // namespace media::cast