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

Unified Diff: mojo/public/bindings/lib/message.cc

Issue 27034003: Mojo C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation issue on Official Linux builder Created 7 years, 2 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/public/bindings/lib/message.cc
diff --git a/net/tools/flip_server/flip_test_utils.cc b/mojo/public/bindings/lib/message.cc
similarity index 51%
copy from net/tools/flip_server/flip_test_utils.cc
copy to mojo/public/bindings/lib/message.cc
index d9846cf5ac751f7bb7389e4faba71d03c43dc05c..ab565ba71b7204fbb79ae6778f41f61d7973cb98 100644
--- a/net/tools/flip_server/flip_test_utils.cc
+++ b/mojo/public/bindings/lib/message.cc
@@ -2,14 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "net/tools/flip_server/flip_test_utils.h"
+#include "mojo/public/bindings/lib/message.h"
-namespace net {
+#include <stdlib.h>
-MockSMInterface::MockSMInterface() {
+namespace mojo {
+
+Message::Message()
+ : data(NULL) {
}
-MockSMInterface::~MockSMInterface() {
+Message::~Message() {
}
-} // namespace net
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698