| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "ipc/ipc_channel.h" | 6 #include "ipc/ipc_channel.h" |
| 7 #include "ipc/ipc_channel_mojo.h" | 7 #include "ipc/ipc_channel_mojo.h" |
| 8 #include "mojo/public/cpp/system/message_pipe.h" | 8 #include "mojo/public/cpp/system/message_pipe.h" |
| 9 | 9 |
| 10 namespace IPC { | 10 namespace IPC { |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 mojo::MessagePipe message_pipe; | 77 mojo::MessagePipe message_pipe; |
| 78 *handle0 = ChannelHandle(name); | 78 *handle0 = ChannelHandle(name); |
| 79 handle0->mojo_handle = message_pipe.handle0.release(); | 79 handle0->mojo_handle = message_pipe.handle0.release(); |
| 80 *handle1 = ChannelHandle(name); | 80 *handle1 = ChannelHandle(name); |
| 81 handle1->mojo_handle = message_pipe.handle1.release(); | 81 handle1->mojo_handle = message_pipe.handle1.release(); |
| 82 } | 82 } |
| 83 | 83 |
| 84 Channel::~Channel() { | 84 Channel::~Channel() { |
| 85 } | 85 } |
| 86 | 86 |
| 87 Channel::AssociatedInterfaceSupport* Channel::GetAssociatedInterfaceSupport() { | |
| 88 return nullptr; | |
| 89 } | |
| 90 | |
| 91 bool Channel::IsSendThreadSafe() const { | 87 bool Channel::IsSendThreadSafe() const { |
| 92 return false; | 88 return false; |
| 93 } | 89 } |
| 94 | 90 |
| 95 void Channel::OnSetAttachmentBrokerEndpoint() { | 91 void Channel::OnSetAttachmentBrokerEndpoint() { |
| 96 CHECK(!did_start_connect_); | 92 CHECK(!did_start_connect_); |
| 97 } | 93 } |
| 98 | 94 |
| 99 void Channel::WillConnect() { | 95 void Channel::WillConnect() { |
| 100 did_start_connect_ = true; | 96 did_start_connect_ = true; |
| 101 } | 97 } |
| 102 | 98 |
| 103 } // namespace IPC | 99 } // namespace IPC |
| 104 | 100 |
| OLD | NEW |