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

Side by Side Diff: sdk/lib/_internal/lib/io_patch.dart

Issue 85993002: Add UDP support to dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Windows build Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/socket_win.cc ('k') | sdk/lib/io/socket.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 patch class _Directory { 5 patch class _Directory {
6 patch static _current() { 6 patch static _current() {
7 throw new UnsupportedError("Directory._current"); 7 throw new UnsupportedError("Directory._current");
8 } 8 }
9 patch static _setCurrent(path) { 9 patch static _setCurrent(path) {
10 throw new UnsupportedError("Directory_SetCurrent"); 10 throw new UnsupportedError("Directory_SetCurrent");
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 throw new UnsupportedError("SecureSocket constructor"); 286 throw new UnsupportedError("SecureSocket constructor");
287 } 287 }
288 288
289 patch static void initialize({String database, 289 patch static void initialize({String database,
290 String password, 290 String password,
291 bool useBuiltinRoots: true}) { 291 bool useBuiltinRoots: true}) {
292 throw new UnsupportedError("SecureSocket.initialize"); 292 throw new UnsupportedError("SecureSocket.initialize");
293 } 293 }
294 } 294 }
295 295
296 patch class RawDatagramSocket {
297 patch static Future<RawDatagramSocket> bind(
298 host, int port, {bool reuseAddress: true}) {
299 throw new UnsupportedError("RawDatagramSocket.bind");
300 }
301 }
302
296 patch class _SecureFilter { 303 patch class _SecureFilter {
297 patch factory _SecureFilter() { 304 patch factory _SecureFilter() {
298 throw new UnsupportedError("_SecureFilter._SecureFilter"); 305 throw new UnsupportedError("_SecureFilter._SecureFilter");
299 } 306 }
300 } 307 }
301 308
302 patch class _StdIOUtils { 309 patch class _StdIOUtils {
303 patch static Stdin _getStdioInputStream() { 310 patch static Stdin _getStdioInputStream() {
304 throw new UnsupportedError("StdIOUtils._getStdioInputStream"); 311 throw new UnsupportedError("StdIOUtils._getStdioInputStream");
305 } 312 }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 patch static bool get isSupported { 359 patch static bool get isSupported {
353 throw new UnsupportedError("_FileSystemWatcher.isSupported"); 360 throw new UnsupportedError("_FileSystemWatcher.isSupported");
354 } 361 }
355 } 362 }
356 363
357 patch class _IOService { 364 patch class _IOService {
358 patch static Future dispatch(int request, List data) { 365 patch static Future dispatch(int request, List data) {
359 throw new UnsupportedError("_IOService.dispatch"); 366 throw new UnsupportedError("_IOService.dispatch");
360 } 367 }
361 } 368 }
OLDNEW
« no previous file with comments | « runtime/bin/socket_win.cc ('k') | sdk/lib/io/socket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698