| Index: runtime/bin/secure_socket_unsupported.cc
|
| diff --git a/runtime/bin/secure_socket_unsupported.cc b/runtime/bin/secure_socket_unsupported.cc
|
| index de97dc8024eb7ee994db7154d6e1cf8b4b060834..6695fa984d32708f8d3aff9557a6f038da8e1052 100644
|
| --- a/runtime/bin/secure_socket_unsupported.cc
|
| +++ b/runtime/bin/secure_socket_unsupported.cc
|
| @@ -27,6 +27,14 @@ void FUNCTION_NAME(SecureSocket_Connect)(Dart_NativeArguments args) {
|
| }
|
|
|
|
|
| +void FUNCTION_NAME(SecureSocket_AddCertificate)(Dart_NativeArguments args) {
|
| + Dart_EnterScope();
|
| + Dart_ThrowException(DartUtils::NewDartArgumentError(
|
| + "Secure Sockets unsupported on this platform"));
|
| + Dart_ExitScope();
|
| +}
|
| +
|
| +
|
| void FUNCTION_NAME(SecureSocket_Destroy)(Dart_NativeArguments args) {
|
| Dart_EnterScope();
|
| Dart_ThrowException(DartUtils::NewDartArgumentError(
|
|
|