| Index: mojo/public/bindings/lib/message.cc
|
| diff --git a/mojo/public/bindings/lib/message.cc b/mojo/public/bindings/lib/message.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ab565ba71b7204fbb79ae6778f41f61d7973cb98
|
| --- /dev/null
|
| +++ b/mojo/public/bindings/lib/message.cc
|
| @@ -0,0 +1,18 @@
|
| +// 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.
|
| +
|
| +#include "mojo/public/bindings/lib/message.h"
|
| +
|
| +#include <stdlib.h>
|
| +
|
| +namespace mojo {
|
| +
|
| +Message::Message()
|
| + : data(NULL) {
|
| +}
|
| +
|
| +Message::~Message() {
|
| +}
|
| +
|
| +} // namespace mojo
|
|
|