| OLD | NEW |
| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 class SecurityContext { | 452 class SecurityContext { |
| 453 @patch | 453 @patch |
| 454 factory SecurityContext() { | 454 factory SecurityContext() { |
| 455 throw new UnsupportedError("SecurityContext constructor"); | 455 throw new UnsupportedError("SecurityContext constructor"); |
| 456 } | 456 } |
| 457 | 457 |
| 458 @patch | 458 @patch |
| 459 static SecurityContext get defaultContext { | 459 static SecurityContext get defaultContext { |
| 460 throw new UnsupportedError("default SecurityContext getter"); | 460 throw new UnsupportedError("default SecurityContext getter"); |
| 461 } | 461 } |
| 462 | |
| 463 @patch | |
| 464 static bool get alpnSupported { | |
| 465 throw new UnsupportedError("SecurityContext alpnSupported getter"); | |
| 466 } | |
| 467 } | 462 } |
| 468 | 463 |
| 469 @patch | 464 @patch |
| 470 class X509Certificate { | 465 class X509Certificate { |
| 471 @patch | 466 @patch |
| 472 factory X509Certificate._() { | 467 factory X509Certificate._() { |
| 473 throw new UnsupportedError("X509Certificate constructor"); | 468 throw new UnsupportedError("X509Certificate constructor"); |
| 474 } | 469 } |
| 475 } | 470 } |
| 476 | 471 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 } | 610 } |
| 616 } | 611 } |
| 617 | 612 |
| 618 @patch | 613 @patch |
| 619 class _IOService { | 614 class _IOService { |
| 620 @patch | 615 @patch |
| 621 static Future _dispatch(int request, List data) { | 616 static Future _dispatch(int request, List data) { |
| 622 throw new UnsupportedError("_IOService._dispatch"); | 617 throw new UnsupportedError("_IOService._dispatch"); |
| 623 } | 618 } |
| 624 } | 619 } |
| OLD | NEW |