| Index: runtime/bin/secure_socket_patch.dart
|
| diff --git a/runtime/bin/secure_socket_patch.dart b/runtime/bin/secure_socket_patch.dart
|
| index 735ba3b29fdf88aa58303bc8a56b8d3fbc2fff45..dffa6f638272e2e772c74654f97775dcd518a5d2 100644
|
| --- a/runtime/bin/secure_socket_patch.dart
|
| +++ b/runtime/bin/secure_socket_patch.dart
|
| @@ -129,11 +129,6 @@ class SecurityContext {
|
| static SecurityContext get defaultContext {
|
| return _SecurityContext.defaultContext;
|
| }
|
| -
|
| - @patch
|
| - static bool get alpnSupported {
|
| - return _SecurityContext.alpnSupported;
|
| - }
|
| }
|
|
|
| class _SecurityContext extends NativeFieldWrapperClass1
|
| @@ -179,8 +174,6 @@ class _SecurityContext extends NativeFieldWrapperClass1
|
| void setClientAuthoritiesBytes(List<int> authCertBytes, {String password})
|
| native "SecurityContext_SetClientAuthoritiesBytes";
|
|
|
| - static bool get alpnSupported => _alpnSupported();
|
| - static bool _alpnSupported() native "SecurityContext_AlpnSupported";
|
| void setAlpnProtocols(List<String> protocols, bool isServer) {
|
| Uint8List encodedProtocols =
|
| SecurityContext._protocolsToLengthEncoding(protocols);
|
|
|