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

Unified Diff: mojo/public/system/core.h

Issue 23629032: mojo: MessageBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation error. Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/libs/message/message_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..9a75c41d3f190bbb9cee228c85b7bd63f64d1d13
--- /dev/null
+++ b/mojo/public/system/core.h
@@ -0,0 +1,20 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#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_
« no previous file with comments | « mojo/public/libs/message/message_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698