chromium/components/viz/test/fake_delay_based_time_source.h

// 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.

#ifndef COMPONENTS_VIZ_TEST_FAKE_DELAY_BASED_TIME_SOURCE_H_
#define COMPONENTS_VIZ_TEST_FAKE_DELAY_BASED_TIME_SOURCE_H_

#include "base/memory/raw_ptr.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "components/viz/common/frame_sinks/delay_based_time_source.h"

namespace base {
class TickClock;
}

namespace viz {

class FakeDelayBasedTimeSourceClient : public DelayBasedTimeSourceClient {};

class FakeDelayBasedTimeSource : public DelayBasedTimeSource {};

}  // namespace viz

#endif  // COMPONENTS_VIZ_TEST_FAKE_DELAY_BASED_TIME_SOURCE_H_