chromium/base/timer/elapsed_timer.cc

// Copyright 2013 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/timer/elapsed_timer.h"

#include "base/check.h"

namespace base {

namespace {
bool g_mock_elapsed_timers_for_test =;
}  // namespace

ElapsedTimer::ElapsedTimer() :{}

ElapsedTimer::ElapsedTimer(ElapsedTimer&& other)
    :{}

void ElapsedTimer::operator=(ElapsedTimer&& other) {}

TimeDelta ElapsedTimer::Elapsed() const {}

ElapsedThreadTimer::ElapsedThreadTimer()
    :{}

TimeDelta ElapsedThreadTimer::Elapsed() const {}

// static
constexpr TimeDelta ScopedMockElapsedTimersForTest::kMockElapsedTime;

ScopedMockElapsedTimersForTest::ScopedMockElapsedTimersForTest() {}

ScopedMockElapsedTimersForTest::~ScopedMockElapsedTimersForTest() {}

}  // namespace base