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

Side by Side Diff: third_party/mojo/src/mojo/public/cpp/system/functions.h

Issue 883843002: Update mojo sdk to rev 126532ce21c5c3c55a1e1693731411cb60169efd (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes to adapt to roll Created 5 years, 10 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
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 // This file provides a C++ wrapping around the standalone functions of the Mojo
6 // C API, replacing the prefix of "Mojo" with a "mojo" namespace.
7 //
8 // Please see "mojo/public/c/system/functions.h" for complete documentation of
9 // the API.
10
5 #ifndef MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 11 #ifndef MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_
6 #define MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 12 #define MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_
7 13
8 #include "mojo/public/c/system/functions.h" 14 #include "mojo/public/c/system/functions.h"
9 15
10 namespace mojo { 16 namespace mojo {
11 17
12 // Standalone functions -------------------------------------------------------- 18 // Returns the current |MojoTimeTicks| value. See |MojoGetTimeTicksNow()| for
13 19 // complete documentation.
14 inline MojoTimeTicks GetTimeTicksNow() { 20 inline MojoTimeTicks GetTimeTicksNow() {
15 return MojoGetTimeTicksNow(); 21 return MojoGetTimeTicksNow();
16 } 22 }
17 23
24 // The C++ wrappers for |MojoWait()| and |MojoWaitMany()| are defined in
25 // "handle.h".
26 // TODO(ggowan): Consider making the C and C++ APIs more consistent in the
27 // organization of the functions into different header files (since in the C
28 // API, those functions are defined in "functions.h").
29
18 } // namespace mojo 30 } // namespace mojo
19 31
20 #endif // MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ 32 #endif // MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698