| Index: mojo/public/cpp/bindings/lib/message.cc
|
| diff --git a/mojo/public/cpp/bindings/lib/message.cc b/mojo/public/cpp/bindings/lib/message.cc
|
| index 4274cc86cb12695c4d0bebd5ea3664e88d89a71c..939e064b5ce178c40e298685ff0162ac7dca7542 100644
|
| --- a/mojo/public/cpp/bindings/lib/message.cc
|
| +++ b/mojo/public/cpp/bindings/lib/message.cc
|
| @@ -12,6 +12,7 @@
|
| #include <utility>
|
|
|
| #include "base/logging.h"
|
| +#include "base/strings/stringprintf.h"
|
|
|
| namespace mojo {
|
|
|
| @@ -78,6 +79,10 @@ ScopedMessageHandle Message::TakeMojoMessage() {
|
| return new_message;
|
| }
|
|
|
| +void Message::NotifyBadMessage(const std::string& error) {
|
| + buffer_->NotifyBadMessage(error);
|
| +}
|
| +
|
| void Message::CloseHandles() {
|
| for (std::vector<Handle>::iterator it = handles_.begin();
|
| it != handles_.end(); ++it) {
|
|
|