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

Unified Diff: runtime/bin/socket_patch.dart

Issue 2780063002: Pulled a significant portion of Socket implementation into BaseSocket in order to prepare for the s… (Closed)
Patch Set: Changed TARGET_OS_* to HOST_OS_*, removed extra include Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/socket_patch.dart
diff --git a/runtime/bin/socket_patch.dart b/runtime/bin/socket_patch.dart
index 5c87fed28f3ea86d216b488f05fe465d272f8278..bbfceb8687e1b481dc7388dfd0dee6ee59bd8540 100644
--- a/runtime/bin/socket_patch.dart
+++ b/runtime/bin/socket_patch.dart
@@ -1064,7 +1064,7 @@ class _NativeSocket extends _NativeSocketNativeWrapper with _ServiceObject {
nativeCreateConnect(List<int> addr, int port) native "Socket_CreateConnect";
nativeCreateBindConnect(List<int> addr, int port, List<int> sourceAddr)
native "Socket_CreateBindConnect";
- bool isBindError(int errorNumber) native "Socket_IsBindError";
+ bool isBindError(int errorNumber) native "SocketBase_IsBindError";
nativeCreateBindListen(List<int> addr, int port, int backlog, bool v6Only,
bool shared) native "ServerSocket_CreateBindListen";
nativeCreateBindDatagram(List<int> addr, int port, bool reuseAddress)

Powered by Google App Engine
This is Rietveld 408576698