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

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

Issue 75033003: Don't use linked maps/sets in http internals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « sdk/lib/io/http_impl.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/io/http_session.dart
diff --git a/sdk/lib/io/http_session.dart b/sdk/lib/io/http_session.dart
index 85c9b3c431a9640f831ecf3cbcc660fa2e20b2f8..1b049e395d8f8eb2e74823a57bbe1a6efa3a89fd 100644
--- a/sdk/lib/io/http_session.dart
+++ b/sdk/lib/io/http_session.dart
@@ -19,7 +19,7 @@ class _HttpSession implements HttpSession {
_HttpSession _prev;
_HttpSession _next;
- final Map _data = new Map();
+ final Map _data = new HashMap();
_HttpSession(_HttpSessionManager this._sessionManager, String this.id)
: _lastSeen = new DateTime.now();
« no previous file with comments | « sdk/lib/io/http_impl.dart ('k') | sdk/lib/io/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698