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

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

Issue 16924009: Fix function renaming typo - change CarryOver to Buffered. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | « no previous file | 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 7c0dd2e93b46b77020969a0bbda42112ba676afc..d6f573429f5f1ab21f747b12622b29e87f4c1233 100644
--- a/sdk/lib/io/secure_socket.dart
+++ b/sdk/lib/io/secure_socket.dart
@@ -874,7 +874,7 @@ class _RawSecureSocket extends Stream<RawSocketEvent>
}
if (!_socketClosedRead && encrypted.free > 0) {
if (_bufferedData != null) {
- _readFromCarryOver();
+ _readFromBuffered();
progress = true;
} else {
List<int> data = _socket.read(encrypted.free);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698