Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Unified Diff: runtime/bin/secure_socket_unsupported.cc

Issue 889443002: Service isolate rework take 2 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/secure_socket.h ('k') | runtime/bin/vmservice.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/secure_socket_unsupported.cc
diff --git a/runtime/bin/secure_socket_unsupported.cc b/runtime/bin/secure_socket_unsupported.cc
index ff7cce6399c90a04196d6e9727e6e888adbdd69a..231b71e06c29fb0421cf9d0e0d5cea965b958f49 100644
--- a/runtime/bin/secure_socket_unsupported.cc
+++ b/runtime/bin/secure_socket_unsupported.cc
@@ -98,5 +98,15 @@ void FUNCTION_NAME(SecureSocket_NewServicePort)(Dart_NativeArguments args) {
Dart_ThrowException(DartUtils::NewDartArgumentError(
"Secure Sockets unsupported on this platform"));
}
+
+class SSLFilter {
+ public:
+ static CObject* ProcessFilterRequest(const CObjectArray& request);
+};
+
+CObject* SSLFilter::ProcessFilterRequest(const CObjectArray& request) {
+ return CObject::IllegalArgumentError();
+}
+
} // namespace bin
} // namespace dart
« no previous file with comments | « runtime/bin/secure_socket.h ('k') | runtime/bin/vmservice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698