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

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

Issue 913753002: Reland "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 d2b3e0ff8a83a36362491ce884018dea485fa4de..8fbc6a7e938519f3750af563dc0f4c29600580ee 100644
--- a/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
+++ b/dart/sdk/lib/_internal/compiler/js_lib/io_patch.dart
@@ -359,7 +359,8 @@ class RawServerSocket {
static Future<RawServerSocket> bind(address,
int port,
{int backlog: 0,
- bool v6Only: false}) {
+ bool v6Only: false,
+ bool shared: false}) {
throw new UnsupportedError("RawServerSocket.bind");
}
}
@@ -370,7 +371,8 @@ class ServerSocket {
static Future<ServerSocket> bind(address,
int port,
{int backlog: 0,
- bool v6Only: false}) {
+ bool v6Only: false,
+ bool shared: 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