| Index: runtime/bin/secure_socket_unsupported.cc
|
| diff --git a/runtime/bin/secure_socket_unsupported.cc b/runtime/bin/secure_socket_unsupported.cc
|
| index a571c8543d370efb454dd9ab3c39980e2dca008b..99e5e3babd88e09b7d4fe4e68e5cdd87f92451d4 100644
|
| --- a/runtime/bin/secure_socket_unsupported.cc
|
| +++ b/runtime/bin/secure_socket_unsupported.cc
|
| @@ -86,5 +86,20 @@ void FUNCTION_NAME(SecureSocket_PeerCertificate)
|
| Dart_ExitScope();
|
| }
|
|
|
| +
|
| +void FUNCTION_NAME(SecureSocket_FilterPointer)(Dart_NativeArguments args) {
|
| + Dart_EnterScope();
|
| + Dart_ThrowException(DartUtils::NewDartArgumentError(
|
| + "Secure Sockets unsupported on this platform"));
|
| + Dart_ExitScope();
|
| +}
|
| +
|
| +
|
| +void FUNCTION_NAME(SecureSocket_NewServicePort)(Dart_NativeArguments args) {
|
| + Dart_EnterScope();
|
| + Dart_ThrowException(DartUtils::NewDartArgumentError(
|
| + "Secure Sockets unsupported on this platform"));
|
| + Dart_ExitScope();
|
| +}
|
| } // namespace bin
|
| } // namespace dart
|
|
|