blob: 7f91ba27ff70b63de78e8cbb8513e4ba3a7f443c (
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
|
// 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"
namespace mojo {
namespace system {
void MessagePipeEndpoint::CancelAllWaiters() {
NOTREACHED();
}
void MessagePipeEndpoint::Close() {
NOTREACHED();
}
MojoResult MessagePipeEndpoint::ReadMessage(
void* /*bytes*/, uint32_t* /*num_bytes*/,
MojoHandle* /*handles*/, uint32_t* /*num_handles*/,
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();
}
} // namespace system
} // namespace mojo
|