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

Unified Diff: mojo/ipc/message/ipc_message.cc

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/message/ipc_message.cc
diff --git a/mojo/ipc/message/ipc_message.cc b/mojo/ipc/message/ipc_message.cc
new file mode 100644
index 0000000000000000000000000000000000000000..271e455519f535c10dc4080bfcfe64b69c3359bb
--- /dev/null
+++ b/mojo/ipc/message/ipc_message.cc
@@ -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.
+
+#include "mojo/ipc/message/ipc_message.h"
+
+#include <assert.h>
+#include <stdlib.h>
+
+namespace mojo {
+
+IPCMessage::IPCMessage() {
+}
+
+IPCMessage::~IPCMessage() {
+}
+
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698