| 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 Mojo C API for shared buffers, | 5 // This file provides a C++ wrapping around the Mojo C API for shared buffers, |
| 6 // replacing the prefix of "Mojo" with a "mojo" namespace, and using more | 6 // replacing the prefix of "Mojo" with a "mojo" namespace, and using more |
| 7 // strongly-typed representations of |MojoHandle|s. | 7 // strongly-typed representations of |MojoHandle|s. |
| 8 // | 8 // |
| 9 // Please see "mojo/public/c/system/buffer.h" for complete documentation of the | 9 // Please see "mojo/public/c/system/buffer.h" for complete documentation of the |
| 10 // API. | 10 // API. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 MOJO_ALLOW_UNUSED_LOCAL(result); | 123 MOJO_ALLOW_UNUSED_LOCAL(result); |
| 124 assert(result == MOJO_RESULT_OK); | 124 assert(result == MOJO_RESULT_OK); |
| 125 } | 125 } |
| 126 | 126 |
| 127 inline SharedBuffer::~SharedBuffer() { | 127 inline SharedBuffer::~SharedBuffer() { |
| 128 } | 128 } |
| 129 | 129 |
| 130 } // namespace mojo | 130 } // namespace mojo |
| 131 | 131 |
| 132 #endif // MOJO_PUBLIC_CPP_SYSTEM_BUFFER_H_ | 132 #endif // MOJO_PUBLIC_CPP_SYSTEM_BUFFER_H_ |
| OLD | NEW |