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