Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: mojo/common/time_helper.cc

Issue 1262173005: Straightens outs DEPS in mojo/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add dep on system_for_component Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/common/time_helper.h ('k') | mojo/environment/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "mojo/common/time_helper.h"
6
7 #include "base/time/tick_clock.h"
8
9 namespace mojo {
10 namespace common {
11
12 namespace {
13
14 base::TickClock* tick_clock = NULL;
15
16 } // namespace
17
18 namespace test {
19
20 void SetTickClockForTest(base::TickClock* clock) {
21 tick_clock = clock;
22 }
23 } // namespace test
24
25 namespace internal {
26
27 base::TimeTicks NowTicks() {
28 return tick_clock ? tick_clock->NowTicks() : base::TimeTicks::Now();
29 }
30
31 } // namespace internal
32 } // namespace common
33 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/common/time_helper.h ('k') | mojo/environment/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698