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

Unified Diff: dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart

Issue 896213002: Revert "Introduce optional 'bool shared' parameter to ServerSocket.bind() ..." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 5 years, 10 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
« no previous file with comments | « dart/runtime/bin/socket_patch.dart ('k') | dart/sdk/lib/io/secure_server_socket.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
diff --git a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
index 8acdf18c8c20df38d1f073848497618c16ad5444..a59c088aae42137461a23e3b99a3ae1ab6a7d90a 100644
--- a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
+++ b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
@@ -359,8 +359,7 @@ class RawServerSocket {
static Future<RawServerSocket> bind(address,
int port,
{int backlog: 0,
- bool v6Only: false,
- bool shared: false}) {
+ bool v6Only: false}) {
throw new UnsupportedError("RawServerSocket.bind");
}
}
@@ -371,8 +370,7 @@ class ServerSocket {
static Future<ServerSocket> bind(address,
int port,
{int backlog: 0,
- bool v6Only: false,
- bool shared: false}) {
+ bool v6Only: false}) {
throw new UnsupportedError("ServerSocket.bind");
}
}
« no previous file with comments | « dart/runtime/bin/socket_patch.dart ('k') | dart/sdk/lib/io/secure_server_socket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698