Omnibox - Control HQP's HUP-Like Scoring Mode via Field Trial
[chromium-blink-merge.git] / mojo / common / time_helper.cc
blob36fd0879e349ae16e220a01c4c71b0fd9fe8b87a
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "mojo/common/time_helper.h"
7 #include "base/time/tick_clock.h"
9 namespace mojo {
10 namespace common {
12 namespace {
14 base::TickClock* tick_clock = NULL;
16 } // namespace
18 namespace test {
20 void SetTickClockForTest(base::TickClock* clock) {
21 tick_clock = clock;
23 } // namespace test
25 namespace internal {
27 base::TimeTicks NowTicks() {
28 return tick_clock ? tick_clock->NowTicks() : base::TimeTicks::Now();
31 } // namespace internal
32 } // namespace common
33 } // namespace mojo