OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_COMMON_TIME_HELPER_H_ | 5 #ifndef MOJO_MESSAGE_PUMP_TIME_HELPER_H_ |
6 #define MOJO_COMMON_TIME_HELPER_H_ | 6 #define MOJO_MESSAGE_PUMP_TIME_HELPER_H_ |
7 | 7 |
8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
9 #include "mojo/common/mojo_common_export.h" | |
10 | 9 |
11 namespace base { | 10 namespace base { |
12 class TickClock; | 11 class TickClock; |
13 } | 12 } |
14 | 13 |
15 namespace mojo { | 14 namespace mojo { |
16 namespace common { | 15 namespace common { |
17 namespace test { | 16 namespace test { |
18 | 17 |
19 // Sets the TickClock used for getting TimeTicks::Now(). This is currently used | 18 // Sets the TickClock used for getting TimeTicks::Now(). This is currently used |
20 // by both HandleWatcher and MessagePumpMojo. | 19 // by both HandleWatcher and MessagePumpMojo. |
21 MOJO_COMMON_EXPORT void SetTickClockForTest(base::TickClock* clock); | 20 void SetTickClockForTest(base::TickClock* clock); |
22 | 21 |
23 } // namespace test | 22 } // namespace test |
24 | 23 |
25 namespace internal { | 24 namespace internal { |
26 | 25 |
27 // Returns now. Used internally; generally not useful. | 26 // Returns now. Used internally; generally not useful. |
28 MOJO_COMMON_EXPORT base::TimeTicks NowTicks(); | 27 base::TimeTicks NowTicks(); |
29 | 28 |
30 } // namespace internal | 29 } // namespace internal |
31 } // namespace common | 30 } // namespace common |
32 } // namespace mojo | 31 } // namespace mojo |
33 | 32 |
34 #endif // MOJO_COMMON_TIME_HELPER_H_ | 33 #endif // MOJO_MESSAGE_PUMP_TIME_HELPER_H_ |
OLD | NEW |