1*635a8641SAndroid Build Coastguard Worker // Copyright 2014 The Chromium Authors. All rights reserved. 2*635a8641SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*635a8641SAndroid Build Coastguard Worker // found in the LICENSE file. 4*635a8641SAndroid Build Coastguard Worker 5*635a8641SAndroid Build Coastguard Worker // This file provides a C++ wrapping around the standalone functions of the Mojo 6*635a8641SAndroid Build Coastguard Worker // C API, replacing the prefix of "Mojo" with a "mojo" namespace. 7*635a8641SAndroid Build Coastguard Worker // 8*635a8641SAndroid Build Coastguard Worker // Please see "mojo/public/c/system/functions.h" for complete documentation of 9*635a8641SAndroid Build Coastguard Worker // the API. 10*635a8641SAndroid Build Coastguard Worker 11*635a8641SAndroid Build Coastguard Worker #ifndef MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 12*635a8641SAndroid Build Coastguard Worker #define MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 13*635a8641SAndroid Build Coastguard Worker 14*635a8641SAndroid Build Coastguard Worker #include "mojo/public/c/system/functions.h" 15*635a8641SAndroid Build Coastguard Worker 16*635a8641SAndroid Build Coastguard Worker namespace mojo { 17*635a8641SAndroid Build Coastguard Worker 18*635a8641SAndroid Build Coastguard Worker // Returns the current |MojoTimeTicks| value. See |MojoGetTimeTicksNow()| for 19*635a8641SAndroid Build Coastguard Worker // complete documentation. GetTimeTicksNow()20*635a8641SAndroid Build Coastguard Workerinline MojoTimeTicks GetTimeTicksNow() { 21*635a8641SAndroid Build Coastguard Worker return MojoGetTimeTicksNow(); 22*635a8641SAndroid Build Coastguard Worker } 23*635a8641SAndroid Build Coastguard Worker 24*635a8641SAndroid Build Coastguard Worker } // namespace mojo 25*635a8641SAndroid Build Coastguard Worker 26*635a8641SAndroid Build Coastguard Worker #endif // MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 27