Correctly handle empty data in RenderMessageFilter::OnCacheableMetadataAvailable()
[chromium-blink-merge.git] / mojo / message_pump / time_helper.h
blob607900043932af9f30a64e81e454ac445f9a3243
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 #ifndef MOJO_MESSAGE_PUMP_TIME_HELPER_H_
6 #define MOJO_MESSAGE_PUMP_TIME_HELPER_H_
8 #include "base/time/time.h"
9 #include "mojo/message_pump/mojo_message_pump_export.h"
11 namespace base {
12 class TickClock;
15 namespace mojo {
16 namespace common {
17 namespace test {
19 // Sets the TickClock used for getting TimeTicks::Now(). This is currently used
20 // by both HandleWatcher and MessagePumpMojo.
21 MOJO_MESSAGE_PUMP_EXPORT void SetTickClockForTest(base::TickClock* clock);
23 } // namespace test
25 namespace internal {
27 // Returns now. Used internally; generally not useful.
28 MOJO_MESSAGE_PUMP_EXPORT base::TimeTicks NowTicks();
30 } // namespace internal
31 } // namespace common
32 } // namespace mojo
34 #endif // MOJO_MESSAGE_PUMP_TIME_HELPER_H_