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

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

Issue 11419138: Rename TlsSocket to SecureSocket, and all other Tls... items to Secure.... (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename C++ class from Filter to SSLFilter. 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/tls_socket_patch.dart ('k') | sdk/lib/io/io.dart » ('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 6b6eeed2566d81f20b60b0871bad8771d9e86d79..a253935b996c1629b7ff9ce0f51941da7b85d951 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -167,16 +167,16 @@ patch class Socket {
patch factory Socket(String host, int port) => new _Socket(host, port);
}
-patch class TlsSocket {
+patch class SecureSocket {
patch static void setCertificateDatabase(String certificateDatabase,
[String password]) {
- throw new UnsupportedError("TlsSocket.setCertificateDatabase");
+ throw new UnsupportedError("SecureSocket.setCertificateDatabase");
}
}
-patch class _TlsFilter {
- patch factory _TlsFilter() {
- throw new UnsupportedError("_TlsFilter._TlsFilter");
+patch class _SecureFilter {
+ patch factory _SecureFilter() {
+ throw new UnsupportedError("_SecureFilter._SecureFilter");
}
}
« no previous file with comments | « runtime/bin/tls_socket_patch.dart ('k') | sdk/lib/io/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698