| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/system/message_pipe_endpoint.h" | 5 #include "mojo/system/message_pipe_endpoint.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "mojo/system/channel.h" | 8 #include "mojo/system/channel.h" |
| 9 | 9 |
| 10 namespace mojo { | 10 namespace mojo { |
| 11 namespace system { | 11 namespace system { |
| 12 | 12 |
| 13 void MessagePipeEndpoint::CancelAllWaiters() { | 13 void MessagePipeEndpoint::CancelAllWaiters() { |
| 14 NOTREACHED(); | 14 NOTREACHED(); |
| 15 } | 15 } |
| 16 | 16 |
| 17 MojoResult MessagePipeEndpoint::ReadMessage( | 17 MojoResult MessagePipeEndpoint::ReadMessage( |
| 18 void* /*bytes*/, uint32_t* /*num_bytes*/, | 18 void* /*bytes*/, uint32_t* /*num_bytes*/, |
| 19 MojoHandle* /*handles*/, uint32_t* /*num_handles*/, | 19 uint32_t /*max_num_dispatchers*/, |
| 20 std::vector<scoped_refptr<Dispatcher> >* /*dispatchers*/, |
| 20 MojoReadMessageFlags /*flags*/) { | 21 MojoReadMessageFlags /*flags*/) { |
| 21 NOTREACHED(); | 22 NOTREACHED(); |
| 22 return MOJO_RESULT_INTERNAL; | 23 return MOJO_RESULT_INTERNAL; |
| 23 } | 24 } |
| 24 | 25 |
| 25 MojoResult MessagePipeEndpoint::AddWaiter(Waiter* /*waiter*/, | 26 MojoResult MessagePipeEndpoint::AddWaiter(Waiter* /*waiter*/, |
| 26 MojoWaitFlags /*flags*/, | 27 MojoWaitFlags /*flags*/, |
| 27 MojoResult /*wake_result*/) { | 28 MojoResult /*wake_result*/) { |
| 28 NOTREACHED(); | 29 NOTREACHED(); |
| 29 return MOJO_RESULT_INTERNAL; | 30 return MOJO_RESULT_INTERNAL; |
| 30 } | 31 } |
| 31 | 32 |
| 32 void MessagePipeEndpoint::RemoveWaiter(Waiter* /*waiter*/) { | 33 void MessagePipeEndpoint::RemoveWaiter(Waiter* /*waiter*/) { |
| 33 NOTREACHED(); | 34 NOTREACHED(); |
| 34 } | 35 } |
| 35 | 36 |
| 36 void MessagePipeEndpoint::Attach(scoped_refptr<Channel> /*channel*/, | 37 void MessagePipeEndpoint::Attach(scoped_refptr<Channel> /*channel*/, |
| 37 MessageInTransit::EndpointId /*local_id*/) { | 38 MessageInTransit::EndpointId /*local_id*/) { |
| 38 NOTREACHED(); | 39 NOTREACHED(); |
| 39 } | 40 } |
| 40 | 41 |
| 41 bool MessagePipeEndpoint::Run(MessageInTransit::EndpointId /*remote_id*/) { | 42 bool MessagePipeEndpoint::Run(MessageInTransit::EndpointId /*remote_id*/) { |
| 42 NOTREACHED(); | 43 NOTREACHED(); |
| 43 return true; | 44 return true; |
| 44 } | 45 } |
| 45 | 46 |
| 46 } // namespace system | 47 } // namespace system |
| 47 } // namespace mojo | 48 } // namespace mojo |
| 48 | 49 |
| OLD | NEW |