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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart

Issue 10916081: Add secure sockets to dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments, remove HandshakeStartHandler. Created 8 years, 1 month 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/utils.h ('k') | sdk/lib/io/iolib_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index f603e87df339088dffde2d1342f72a32fef48637..e06bd1886e035b9beef36f1ed2a4b7f6c19fdbea 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -167,6 +167,18 @@ patch class Socket {
patch factory Socket(String host, int port) => new _Socket(host, port);
}
+patch class TlsSocket {
+ patch static void setCertificateDatabase(String pkcertDirectory) {
+ throw new UnsupportedError("TlsSocket.setCertificateDatabase");
+ }
+}
+
+patch class _TlsFilter {
+ patch factory _TlsFilter() {
+ throw new UnsupportedError("_TlsFilter._TlsFilter");
+ }
+}
+
patch class _StdIOUtils {
patch static _getStdioHandle(Socket socket, int num) {
throw new UnsupportedError("StdIOUtils._getStdioHandle");
« no previous file with comments | « runtime/bin/utils.h ('k') | sdk/lib/io/iolib_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698