OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 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/system/message_pipe_endpoint.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace mojo { |
| 10 namespace system { |
| 11 |
| 12 void MessagePipeEndpoint::CancelAllWaiters() { |
| 13 NOTREACHED(); |
| 14 } |
| 15 |
| 16 void MessagePipeEndpoint::Close() { |
| 17 NOTREACHED(); |
| 18 } |
| 19 |
| 20 MojoResult MessagePipeEndpoint::ReadMessage( |
| 21 void* /*bytes*/, uint32_t* /*num_bytes*/, |
| 22 MojoHandle* /*handles*/, uint32_t* /*num_handles*/, |
| 23 MojoReadMessageFlags /*flags*/) { |
| 24 NOTREACHED(); |
| 25 return MOJO_RESULT_INTERNAL; |
| 26 } |
| 27 |
| 28 MojoResult MessagePipeEndpoint::AddWaiter(Waiter* /*waiter*/, |
| 29 MojoWaitFlags /*flags*/, |
| 30 MojoResult /*wake_result*/) { |
| 31 NOTREACHED(); |
| 32 return MOJO_RESULT_INTERNAL; |
| 33 } |
| 34 |
| 35 void MessagePipeEndpoint::RemoveWaiter(Waiter* /*waiter*/) { |
| 36 NOTREACHED(); |
| 37 } |
| 38 |
| 39 } // namespace system |
| 40 } // namespace mojo |
| 41 |
OLD | NEW |