OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef MOJO_PUBLIC_SYSTEM_CORE_CPP_H_ | 5 #ifndef MOJO_PUBLIC_CPP_SYSTEM_CORE_H_ |
6 #define MOJO_PUBLIC_SYSTEM_CORE_CPP_H_ | 6 #define MOJO_PUBLIC_CPP_SYSTEM_CORE_H_ |
7 | 7 |
8 #include <assert.h> | 8 #include <assert.h> |
9 #include <stddef.h> | 9 #include <stddef.h> |
10 | 10 |
11 #include <limits> | 11 #include <limits> |
12 | 12 |
13 #include "mojo/public/c/system/core.h" | 13 #include "mojo/public/c/system/core.h" |
14 #include "mojo/public/c/system/macros.h" | 14 #include "mojo/public/c/system/macros.h" |
15 #include "mojo/public/c/system/system_export.h" | 15 #include "mojo/public/c/system/system_export.h" |
16 | 16 |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 MojoResult result MOJO_ALLOW_UNUSED = | 457 MojoResult result MOJO_ALLOW_UNUSED = |
458 CreateSharedBuffer(&options, num_bytes, &handle); | 458 CreateSharedBuffer(&options, num_bytes, &handle); |
459 assert(result == MOJO_RESULT_OK); | 459 assert(result == MOJO_RESULT_OK); |
460 } | 460 } |
461 | 461 |
462 inline SharedBuffer::~SharedBuffer() { | 462 inline SharedBuffer::~SharedBuffer() { |
463 } | 463 } |
464 | 464 |
465 } // namespace mojo | 465 } // namespace mojo |
466 | 466 |
467 #endif // MOJO_PUBLIC_SYSTEM_CORE_CPP_H_ | 467 #endif // MOJO_PUBLIC_CPP_SYSTEM_CORE_H_ |
OLD | NEW |