| 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 #ifndef IPC_IPC_CHANNEL_MOJO_H_ | 5 #ifndef IPC_IPC_CHANNEL_MOJO_H_ |
| 6 #define IPC_IPC_CHANNEL_MOJO_H_ | 6 #define IPC_IPC_CHANNEL_MOJO_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 ~ChannelMojo() override; | 67 ~ChannelMojo() override; |
| 68 | 68 |
| 69 // Channel implementation | 69 // Channel implementation |
| 70 bool Connect() override; | 70 bool Connect() override; |
| 71 void Pause() override; | 71 void Pause() override; |
| 72 void Unpause(bool flush) override; | 72 void Unpause(bool flush) override; |
| 73 void Flush() override; | 73 void Flush() override; |
| 74 void Close() override; | 74 void Close() override; |
| 75 bool Send(Message* message) override; | 75 bool Send(Message* message) override; |
| 76 base::ProcessId GetPeerPID() const override; | 76 base::ProcessId GetPeerPID() const override; |
| 77 base::ProcessId GetSelfPID() const override; | |
| 78 Channel::AssociatedInterfaceSupport* GetAssociatedInterfaceSupport() override; | 77 Channel::AssociatedInterfaceSupport* GetAssociatedInterfaceSupport() override; |
| 79 | 78 |
| 80 #if defined(OS_POSIX) && !defined(OS_NACL_SFI) | 79 base::ProcessId GetSelfPID() const; |
| 81 int GetClientFileDescriptor() const override; | |
| 82 base::ScopedFD TakeClientFileDescriptor() override; | |
| 83 #endif // defined(OS_POSIX) && !defined(OS_NACL_SFI) | |
| 84 | 80 |
| 85 // These access protected API of IPC::Message, which has ChannelMojo | 81 // These access protected API of IPC::Message, which has ChannelMojo |
| 86 // as a friend class. | 82 // as a friend class. |
| 87 static MojoResult WriteToMessageAttachmentSet( | 83 static MojoResult WriteToMessageAttachmentSet( |
| 88 base::Optional<std::vector<mojom::SerializedHandlePtr>> handle_buffer, | 84 base::Optional<std::vector<mojom::SerializedHandlePtr>> handle_buffer, |
| 89 Message* message); | 85 Message* message); |
| 90 static MojoResult ReadFromMessageAttachmentSet( | 86 static MojoResult ReadFromMessageAttachmentSet( |
| 91 Message* message, | 87 Message* message, |
| 92 base::Optional<std::vector<mojom::SerializedHandlePtr>>* handles); | 88 base::Optional<std::vector<mojom::SerializedHandlePtr>>* handles); |
| 93 | 89 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 associated_interfaces_; | 129 associated_interfaces_; |
| 134 | 130 |
| 135 base::WeakPtrFactory<ChannelMojo> weak_factory_; | 131 base::WeakPtrFactory<ChannelMojo> weak_factory_; |
| 136 | 132 |
| 137 DISALLOW_COPY_AND_ASSIGN(ChannelMojo); | 133 DISALLOW_COPY_AND_ASSIGN(ChannelMojo); |
| 138 }; | 134 }; |
| 139 | 135 |
| 140 } // namespace IPC | 136 } // namespace IPC |
| 141 | 137 |
| 142 #endif // IPC_IPC_CHANNEL_MOJO_H_ | 138 #endif // IPC_IPC_CHANNEL_MOJO_H_ |
| OLD | NEW |