| Index: mojo/public/cpp/bindings/lib/message_validator.cc
|
| diff --git a/mojo/public/cpp/bindings/lib/message_validator.cc b/mojo/public/cpp/bindings/lib/message_validator.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..570c366f5f03b7e9b0a0ba295da5eda4ef7b6cbc
|
| --- /dev/null
|
| +++ b/mojo/public/cpp/bindings/lib/message_validator.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2014 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/cpp/bindings/lib/message_validator.h"
|
| +
|
| +#include <assert.h>
|
| +
|
| +namespace mojo {
|
| +namespace internal {
|
| +
|
| +MessageValidator::MessageValidator(MessageReceiver* next) : next_(next) {
|
| +}
|
| +
|
| +MessageValidator::~MessageValidator() {
|
| +}
|
| +
|
| +bool MessageValidator::AcceptWithResponder(Message* message,
|
| + MessageReceiver* responder) {
|
| + assert(false); // Not reached!
|
| + return false;
|
| +}
|
| +
|
| +} // namespace internal
|
| +} // namespace mojo
|
|
|