diff options
Diffstat (limited to 'base/time/default_clock.cc')
-rw-r--r-- | base/time/default_clock.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/base/time/default_clock.cc b/base/time/default_clock.cc new file mode 100644 index 0000000..5f70114 --- /dev/null +++ b/base/time/default_clock.cc @@ -0,0 +1,15 @@ +// 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. + +#include "base/time/default_clock.h" + +namespace base { + +DefaultClock::~DefaultClock() {} + +Time DefaultClock::Now() { + return Time::Now(); +} + +} // namespace base |