chromium/chrome/browser/resource_coordinator/time.cc

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

#include "chrome/browser/resource_coordinator/time.h"

#include "base/check.h"
#include "base/logging.h"
#include "base/time/clock.h"
#include "base/time/tick_clock.h"

namespace resource_coordinator {

namespace {

const base::TickClock* g_tick_clock_for_testing =;
const base::Clock* g_clock_for_testing =;

}  // namespace

base::TimeTicks NowTicks() {}

base::Time Now() {}

const base::TickClock* GetTickClock() {}

ScopedSetClocksForTesting::ScopedSetClocksForTesting(
    const base::Clock* clock,
    const base::TickClock* tick_clock) {}

ScopedSetClocksForTesting::~ScopedSetClocksForTesting() {}

}  // namespace resource_coordinator