Chromium Code Reviews| Index: base/sync_socket_nacl.cc |
| diff --git a/base/sync_socket_nacl.cc b/base/sync_socket_nacl.cc |
| index f6d17e7ffb61dc20468bbd4e987c927171273f11..0df6ed685ad9b6de89adc6b8f31c6ee3e33247f7 100644 |
| --- a/base/sync_socket_nacl.cc |
| +++ b/base/sync_socket_nacl.cc |
| @@ -27,6 +27,19 @@ bool SyncSocket::CreatePair(SyncSocket* socket_a, SyncSocket* socket_b) { |
| return false; |
| } |
| +// static |
| +SyncSocket::Handle SyncSocket::UnwrapHandle( |
| + const SyncSocket::TransitDescriptor& descriptor) { |
| + NOTIMPLEMENTED(); |
|
henrika (OOO until Aug 14)
2014/09/01 14:30:43
Add TODO and link to issue in crbug.
burnik
2014/09/01 14:59:33
Done.
|
| + return SyncSocket::kInvalidHandle; |
| +} |
| + |
| +bool SyncSocket::PrepareTransitDescriptor(ProcessHandle peer_process_handle, |
| + SyncSocket::TransitDescriptor * descriptor) { |
|
no longer working on chromium
2014/09/01 14:56:18
indentation. run git-clang-format
burnik
2014/09/01 15:08:02
Done.
|
| + NOTIMPLEMENTED(); |
|
henrika (OOO until Aug 14)
2014/09/01 14:30:43
Same here.
burnik
2014/09/01 14:59:33
Done.
|
| + return false; |
| +} |
| + |
| bool SyncSocket::Close() { |
| if (handle_ != kInvalidHandle) { |
| if (close(handle_) < 0) |