1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "mojo/public/cpp/bindings/no_interface.h"
6
7namespace mojo {
8
9const char* NoInterface::Name_ = "mojo::NoInterface";
10
11bool NoInterfaceStub::Accept(Message* message) {
12  return false;
13}
14
15bool NoInterfaceStub::AcceptWithResponder(Message* message,
16                                          MessageReceiver* responder) {
17  return false;
18}
19
20}  // namespace mojo
21