| 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 // This file provides a C++ wrapping around the standalone functions of the Mojo | 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. | 6 // C API, replacing the prefix of "Mojo" with a "mojo" namespace. |
| 7 // | 7 // |
| 8 // Please see "mojo/public/c/system/functions.h" for complete documentation of | 8 // Please see "mojo/public/c/system/functions.h" for complete documentation of |
| 9 // the API. | 9 // the API. |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 // The C++ wrappers for |MojoWait()| and |MojoWaitMany()| are defined in | 24 // The C++ wrappers for |MojoWait()| and |MojoWaitMany()| are defined in |
| 25 // "handle.h". | 25 // "handle.h". |
| 26 // TODO(ggowan): Consider making the C and C++ APIs more consistent in the | 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 | 27 // organization of the functions into different header files (since in the C |
| 28 // API, those functions are defined in "functions.h"). | 28 // API, those functions are defined in "functions.h"). |
| 29 | 29 |
| 30 } // namespace mojo | 30 } // namespace mojo |
| 31 | 31 |
| 32 #endif // MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ | 32 #endif // MOJO_PUBLIC_CPP_SYSTEM_FUNCTIONS_H_ |
| OLD | NEW |