// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/test/simple_test_tick_clock.h" #include "base/check.h" namespace base { SimpleTestTickClock::SimpleTestTickClock() = default; SimpleTestTickClock::~SimpleTestTickClock() = default; TimeTicks SimpleTestTickClock::NowTicks() const { … } void SimpleTestTickClock::Advance(TimeDelta delta) { … } void SimpleTestTickClock::SetNowTicks(TimeTicks ticks) { … } } // namespace base