summaryrefslogtreecommitdiffstats
path: root/mojo/system/message_pipe_endpoint.cc
blob: 128313e7e85e752497ee33d3aa2aeb43401f87ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// 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/system/message_pipe_endpoint.h"

#include "base/logging.h"
#include "mojo/system/channel.h"

namespace mojo {
namespace system {

void MessagePipeEndpoint::Close() {
  NOTREACHED();
}

void MessagePipeEndpoint::CancelAllWaiters() {
  NOTREACHED();
}

MojoResult MessagePipeEndpoint::ReadMessage(void* /*bytes*/,
                                            uint32_t* /*num_bytes*/,
                                            DispatcherVector* /*dispatchers*/,
                                            uint32_t* /*num_dispatchers*/,
                                            MojoReadMessageFlags /*flags*/) {
  NOTREACHED();
  return MOJO_RESULT_INTERNAL;
}

MojoResult MessagePipeEndpoint::AddWaiter(Waiter* /*waiter*/,
                                          MojoWaitFlags /*flags*/,
                                          MojoResult /*wake_result*/) {
  NOTREACHED();
  return MOJO_RESULT_INTERNAL;
}

void MessagePipeEndpoint::RemoveWaiter(Waiter* /*waiter*/) {
  NOTREACHED();
}

void MessagePipeEndpoint::Attach(scoped_refptr<Channel> /*channel*/,
                                 MessageInTransit::EndpointId /*local_id*/) {
  NOTREACHED();
}

bool MessagePipeEndpoint::Run(MessageInTransit::EndpointId /*remote_id*/) {
  NOTREACHED();
  return true;
}

void MessagePipeEndpoint::OnRemove() {
  NOTREACHED();
}

}  // namespace system
}  // namespace mojo