chromium/extensions/test/logging_timer.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 "extensions/test/logging_timer.h"

#include <map>

#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/time/tick_clock.h"

namespace extensions {

namespace {

const base::TickClock* g_clock_for_testing =;

// A global record of all tracked times.
class TimeTracker {};

base::TimeTicks GetNow() {}

TimeTracker& GetTimeTracker() {}

}  // namespace

LoggingTimer::LoggingTimer(const char* key) :{}

LoggingTimer::~LoggingTimer() {}

// static
base::TimeDelta LoggingTimer::GetTrackedTime(const char* key) {}

// static
void LoggingTimer::Print() {}

// static
void LoggingTimer::set_clock_for_testing(const base::TickClock* clock) {}

}  // namespace extensions