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

Side by Side Diff: mojo/message_pump/time_helper.h

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/message_pump/mojo_message_pump_export.h ('k') | mojo/message_pump/time_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 9 #include "mojo/message_pump/mojo_message_pump_export.h"
10 10
11 namespace base { 11 namespace base {
12 class TickClock; 12 class TickClock;
13 } 13 }
14 14
15 namespace mojo { 15 namespace mojo {
16 namespace common { 16 namespace common {
17 namespace test { 17 namespace test {
18 18
19 // Sets the TickClock used for getting TimeTicks::Now(). This is currently used 19 // Sets the TickClock used for getting TimeTicks::Now(). This is currently used
20 // by both HandleWatcher and MessagePumpMojo. 20 // by both HandleWatcher and MessagePumpMojo.
21 MOJO_COMMON_EXPORT void SetTickClockForTest(base::TickClock* clock); 21 MOJO_MESSAGE_PUMP_EXPORT void SetTickClockForTest(base::TickClock* clock);
22 22
23 } // namespace test 23 } // namespace test
24 24
25 namespace internal { 25 namespace internal {
26 26
27 // Returns now. Used internally; generally not useful. 27 // Returns now. Used internally; generally not useful.
28 MOJO_COMMON_EXPORT base::TimeTicks NowTicks(); 28 MOJO_MESSAGE_PUMP_EXPORT base::TimeTicks NowTicks();
29 29
30 } // namespace internal 30 } // namespace internal
31 } // namespace common 31 } // namespace common
32 } // namespace mojo 32 } // namespace mojo
33 33
34 #endif // MOJO_COMMON_TIME_HELPER_H_ 34 #endif // MOJO_MESSAGE_PUMP_TIME_HELPER_H_
OLDNEW
« no previous file with comments | « mojo/message_pump/mojo_message_pump_export.h ('k') | mojo/message_pump/time_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698