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

Unified Diff: mojo/ipc/core/ipc_handle.h

Issue 23629032: mojo: MessageBuilder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add support for a string field type. 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
Index: mojo/ipc/core/ipc_handle.h
diff --git a/mojo/ipc/core/ipc_handle.h b/mojo/ipc/core/ipc_handle.h
new file mode 100644
index 0000000000000000000000000000000000000000..cc56f7b49ee2c1253b80ca826e8e38395f2641e7
--- /dev/null
+++ b/mojo/ipc/core/ipc_handle.h
@@ -0,0 +1,18 @@
+// Copyright (c) 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_IPC_CORE_IPC_HANDLE_H_
+#define MOJO_IPC_CORE_IPC_HANDLE_H_
+
+#include <stdint.h>
+
+namespace mojo {
+
+struct Handle {
vtl 2013/09/11 17:37:16 Probably the C++ layer should build on top of a C
+ uint32_t value;
+};
+
+} // namespace mojo
+
+#endif // MOJO_IPC_CORE_IPC_HANDLE_H_
« no previous file with comments | « build/all.gyp ('k') | mojo/ipc/message/README » ('j') | mojo/ipc/message/README » ('J')

Powered by Google App Engine
This is Rietveld 408576698