blob: 933ea51805289ee89e8d62463f04c9bc2bc7e40e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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/libs/message/message.h"
namespace mojo {
Message::Message() {
}
Message::~Message() {
}
} // namespace mojo
|