default_tick_clock.cc 368 Bytes
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
#include "butil/time/default_tick_clock.h"
gejun's avatar
gejun committed
6

7
namespace butil {
gejun's avatar
gejun committed
8 9 10 11 12 13 14

DefaultTickClock::~DefaultTickClock() {}

TimeTicks DefaultTickClock::NowTicks() {
  return TimeTicks::Now();
}

15
}  // namespace butil