| Index: mojo/public/bindings/lib/message_builder.h
|
| diff --git a/mojo/public/bindings/lib/message_builder.h b/mojo/public/bindings/lib/message_builder.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4460184ec202438cd537770292dd3f0f5c315b05
|
| --- /dev/null
|
| +++ b/mojo/public/bindings/lib/message_builder.h
|
| @@ -0,0 +1,32 @@
|
| +// 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.
|
| +
|
| +#ifndef MOJO_PUBLIC_BINDINGS_LIB_MESSAGE_BUILDER_H_
|
| +#define MOJO_PUBLIC_BINDINGS_LIB_MESSAGE_BUILDER_H_
|
| +
|
| +#include "mojo/public/bindings/lib/buffer.h"
|
| +
|
| +namespace mojo {
|
| +struct MessageData;
|
| +
|
| +// Used to construct a MessageData object.
|
| +class MessageBuilder {
|
| + public:
|
| + MessageBuilder();
|
| + ~MessageBuilder();
|
| +
|
| + Buffer* buffer() { return &buf_; }
|
| +
|
| + // Call Finish when done making allocations in |buffer()|. A heap-allocated
|
| + // MessageData object will be returned. When no longer needed, use |free()|
|
| + // to release the MessageData object's memory.
|
| + MessageData* Finish(uint32_t message_name);
|
| +
|
| + private:
|
| + ContiguousBuffer buf_;
|
| +};
|
| +
|
| +} // namespace mojo
|
| +
|
| +#endif // MOJO_PUBLIC_BINDINGS_LIB_MESSAGE_BUILDER_H_
|
|
|