| 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.h" | 5 #include "mojo/system/message_pipe.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 #include "mojo/system/dispatcher.h" | 9 #include "mojo/system/dispatcher.h" |
| 10 #include "mojo/system/local_message_pipe_endpoint.h" | 10 #include "mojo/system/local_message_pipe_endpoint.h" |
| 11 #include "mojo/system/message_in_transit.h" | 11 #include "mojo/system/message_in_transit.h" |
| 12 #include "mojo/system/message_pipe_endpoint.h" | 12 #include "mojo/system/message_pipe_endpoint.h" |
| 13 #include "mojo/system/proxy_message_pipe_endpoint.h" | 13 #include "mojo/system/proxy_message_pipe_endpoint.h" |
| 14 | 14 |
| 15 namespace mojo { | 15 namespace mojo { |
| 16 namespace system { | 16 namespace system { |
| 17 | 17 |
| 18 MessagePipe::MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint_0, | 18 MessagePipe::MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint0, |
| 19 scoped_ptr<MessagePipeEndpoint> endpoint_1) { | 19 scoped_ptr<MessagePipeEndpoint> endpoint1) { |
| 20 endpoints_[0].reset(endpoint_0.release()); | 20 endpoints_[0].reset(endpoint0.release()); |
| 21 endpoints_[1].reset(endpoint_1.release()); | 21 endpoints_[1].reset(endpoint1.release()); |
| 22 } | 22 } |
| 23 | 23 |
| 24 MessagePipe::MessagePipe() { | 24 MessagePipe::MessagePipe() { |
| 25 endpoints_[0].reset(new LocalMessagePipeEndpoint()); | 25 endpoints_[0].reset(new LocalMessagePipeEndpoint()); |
| 26 endpoints_[1].reset(new LocalMessagePipeEndpoint()); | 26 endpoints_[1].reset(new LocalMessagePipeEndpoint()); |
| 27 } | 27 } |
| 28 | 28 |
| 29 // static | 29 // static |
| 30 unsigned MessagePipe::GetPeerPort(unsigned port) { | 30 unsigned MessagePipe::GetPeerPort(unsigned port) { |
| 31 DCHECK(port == 0 || port == 1); | 31 DCHECK(port == 0 || port == 1); |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 rv = MOJO_RESULT_UNKNOWN; | 220 rv = MOJO_RESULT_UNKNOWN; |
| 221 break; | 221 break; |
| 222 } | 222 } |
| 223 | 223 |
| 224 message->Destroy(); | 224 message->Destroy(); |
| 225 return rv; | 225 return rv; |
| 226 } | 226 } |
| 227 | 227 |
| 228 } // namespace system | 228 } // namespace system |
| 229 } // namespace mojo | 229 } // namespace mojo |
| OLD | NEW |