| 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 | 7 |
| 8 namespace IPC { | 8 namespace IPC { |
| 9 | 9 |
| 10 // static | 10 // static |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 return Channel::Create(channel_handle, Channel::MODE_SERVER, listener); | 45 return Channel::Create(channel_handle, Channel::MODE_SERVER, listener); |
| 46 } | 46 } |
| 47 | 47 |
| 48 Channel::~Channel() { | 48 Channel::~Channel() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool Channel::IsSendThreadSafe() const { | 51 bool Channel::IsSendThreadSafe() const { |
| 52 return false; | 52 return false; |
| 53 } | 53 } |
| 54 | 54 |
| 55 void Channel::OnSetAttachmentBrokerEndpoint() { |
| 56 CHECK(!did_start_connect_); |
| 57 } |
| 58 |
| 59 void Channel::WillConnect() { |
| 60 did_start_connect_ = true; |
| 61 } |
| 62 |
| 55 } // namespace IPC | 63 } // namespace IPC |
| 56 | 64 |
| OLD | NEW |