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

Unified Diff: runtime/bin/http_impl.dart

Issue 11273079: Remove unused member (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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: runtime/bin/http_impl.dart
diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart
index c00b06aa1e875a107e748709536dbfbfe480dd97..b92b4b81517aacb527c0be555827263a6aa27b46 100644
--- a/runtime/bin/http_impl.dart
+++ b/runtime/bin/http_impl.dart
@@ -1251,8 +1251,7 @@ class _HttpOutputStream extends _BaseOutputStream implements OutputStream {
class _HttpConnectionBase {
- _HttpConnectionBase() : _sendBuffers = new Queue(),
- _httpParser = new _HttpParser(),
+ _HttpConnectionBase() : _httpParser = new _HttpParser(),
hashCode = _nextHashCode {
_nextHashCode = (_nextHashCode + 1) & 0xFFFFFFF;
}
@@ -1362,8 +1361,6 @@ class _HttpConnectionBase {
bool _error = false; // Is the socket closed due to an error?
_HttpParser _httpParser;
- Queue _sendBuffers;
-
Function onDetach;
// Hash code for HTTP connection. Currently this is just a counter.
« 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