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

Unified Diff: sdk/lib/io/secure_socket.dart

Issue 24596003: Clean up IOService implementation to be shared between patched and non-patched code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « sdk/lib/io/link.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/secure_socket.dart
diff --git a/sdk/lib/io/secure_socket.dart b/sdk/lib/io/secure_socket.dart
index 3b742285d8f9612fd041e7bcb5c7249bdf3f92ce..ef686fdb572ec597becb15acb9d4f0ea8b6dfd64 100644
--- a/sdk/lib/io/secure_socket.dart
+++ b/sdk/lib/io/secure_socket.dart
@@ -997,7 +997,7 @@ class _RawSecureSocket extends Stream<RawSocketEvent>
args[2 * i + 3] = bufs[i].end;
}
- return IOService.dispatch(SSL_PROCESS_FILTER, args).then((response) {
+ return _IOService.dispatch(_SSL_PROCESS_FILTER, args).then((response) {
if (response.length == 2) {
_reportError(new TlsException('${response[1]} error ${response[0]}'));
}
« no previous file with comments | « sdk/lib/io/link.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698