Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: base/sync_socket_posix.cc

Issue 525313002: SyncSocket Transit Descriptor - refactoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows fixes with nits Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/sync_socket.h" 5 #include "base/sync_socket.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <limits.h> 9 #include <limits.h>
10 #include <stdio.h> 10 #include <stdio.h>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 } 89 }
90 #endif 90 #endif
91 91
92 // Copy the handles out for successful return. 92 // Copy the handles out for successful return.
93 socket_a->handle_ = handles[0]; 93 socket_a->handle_ = handles[0];
94 socket_b->handle_ = handles[1]; 94 socket_b->handle_ = handles[1];
95 95
96 return true; 96 return true;
97 } 97 }
98 98
99 // static
100 SyncSocket::Handle SyncSocket::UnwrapHandle(
101 const SyncSocket::TransitDescriptor& descriptor) {
102 return static_cast<SyncSocket::Handle>(descriptor.fd);
103 }
104
105 bool SyncSocket::PrepareTransitDescriptor(
106 ProcessHandle peer_process_handle,
107 SyncSocket::TransitDescriptor* descriptor) {
108 // |TransitDescriptor| on POSIX is a |FileDescriptor|.
109 descriptor->fd = handle();
110 descriptor->auto_close = false;
111 return descriptor->fd != SyncSocket::kInvalidHandle;
tommi (sloooow) - chröme 2014/09/04 17:02:25 nit: SyncSocket:: not necessary
burnik 2014/09/04 18:04:07 Done.
112 }
113
99 bool SyncSocket::Close() { 114 bool SyncSocket::Close() {
100 const bool retval = CloseHandle(handle_); 115 const bool retval = CloseHandle(handle_);
101 handle_ = kInvalidHandle; 116 handle_ = kInvalidHandle;
102 return retval; 117 return retval;
103 } 118 }
104 119
105 size_t SyncSocket::Send(const void* buffer, size_t length) { 120 size_t SyncSocket::Send(const void* buffer, size_t length) {
106 ThreadRestrictions::AssertIOAllowed(); 121 ThreadRestrictions::AssertIOAllowed();
107 return SendHelper(handle_, buffer, length); 122 return SendHelper(handle_, buffer, length);
108 } 123 }
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 return len; 238 return len;
224 } 239 }
225 240
226 // static 241 // static
227 bool CancelableSyncSocket::CreatePair(CancelableSyncSocket* socket_a, 242 bool CancelableSyncSocket::CreatePair(CancelableSyncSocket* socket_a,
228 CancelableSyncSocket* socket_b) { 243 CancelableSyncSocket* socket_b) {
229 return SyncSocket::CreatePair(socket_a, socket_b); 244 return SyncSocket::CreatePair(socket_a, socket_b);
230 } 245 }
231 246
232 } // namespace base 247 } // namespace base
OLDNEW
« no previous file with comments | « base/sync_socket_nacl.cc ('k') | base/sync_socket_win.cc » ('j') | base/sync_socket_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698