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

Side by Side Diff: pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart

Issue 2803543006: Added synchronous socket implementation to dart:io. (Closed)
Patch Set: Changed signature for GetSocketIdNativeField Created 3 years, 8 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
« no previous file with comments | « no previous file | runtime/bin/io_impl_sources.gypi » ('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 import 'dart:_js_helper' show patch; 5 import 'dart:_js_helper' show patch;
6 6
7 @patch 7 @patch
8 class _Directory { 8 class _Directory {
9 @patch 9 @patch
10 static _current() { 10 static _current() {
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 421
422 @patch 422 @patch
423 class SecureSocket { 423 class SecureSocket {
424 @patch 424 @patch
425 factory SecureSocket._(RawSecureSocket rawSocket) { 425 factory SecureSocket._(RawSecureSocket rawSocket) {
426 throw new UnsupportedError("SecureSocket constructor"); 426 throw new UnsupportedError("SecureSocket constructor");
427 } 427 }
428 } 428 }
429 429
430 @patch 430 @patch
431 class RawSynchronousSocket {
432 @patch
433 static RawSynchronousSocket connectSync(host, int port) {
434 throw new UnsupportedError("RawSynchronousSocket.connectSync");
435 }
436 }
437
438 @patch
431 class SecurityContext { 439 class SecurityContext {
432 @patch 440 @patch
433 factory SecurityContext() { 441 factory SecurityContext() {
434 throw new UnsupportedError("SecurityContext constructor"); 442 throw new UnsupportedError("SecurityContext constructor");
435 } 443 }
436 444
437 @patch 445 @patch
438 static SecurityContext get defaultContext { 446 static SecurityContext get defaultContext {
439 throw new UnsupportedError("default SecurityContext getter"); 447 throw new UnsupportedError("default SecurityContext getter");
440 } 448 }
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 } 602 }
595 } 603 }
596 604
597 @patch 605 @patch
598 class _IOService { 606 class _IOService {
599 @patch 607 @patch
600 static Future _dispatch(int request, List data) { 608 static Future _dispatch(int request, List data) {
601 throw new UnsupportedError("_IOService._dispatch"); 609 throw new UnsupportedError("_IOService._dispatch");
602 } 610 }
603 } 611 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_impl_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698