Chromium Code Reviews| Index: mojo/public/system/core.h |
| diff --git a/mojo/public/system/core.h b/mojo/public/system/core.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..786e8866ddfb6edad665d72a066abc93a46b1108 |
| --- /dev/null |
| +++ b/mojo/public/system/core.h |
| @@ -0,0 +1,16 @@ |
| +#ifndef MOJO_PUBLIC_SYSTEM_CORE_H_ |
| +#define MOJO_PUBLIC_SYSTEM_CORE_H_ |
| + |
| +#include <stdint.h> |
| + |
| +typedef uint32_t MojoHandle; |
| + |
| +#ifdef __cplusplus |
| +namespace mojo { |
| + |
| +struct Handle { MojoHandle value; }; |
| + |
| +} // namespace mojo |
| +#endif |
| + |
| +#endif // MOJO_PUBLIC_SYSTEM_CORE_H_ |