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

Unified Diff: net/spdy/spdy_session_pool.cc

Issue 9425016: Change MockRead and MockWrite (et. al.) to take an IoMode enum, instead (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 8 years, 10 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
Index: net/spdy/spdy_session_pool.cc
===================================================================
--- net/spdy/spdy_session_pool.cc (revision 122608)
+++ net/spdy/spdy_session_pool.cc (working copy)
@@ -253,8 +253,9 @@
address = address->ai_next;
SpdyAliasMap::const_iterator it = aliases_.find(endpoint);
- if (it == aliases_.end())
+ if (it == aliases_.end()) {
continue;
+ }
jar (doing other things) 2012/02/22 17:38:25 nit: No need to add this when there is only one li
Ryan Hamilton 2012/02/22 17:50:10 Whoops! I missed that before sending it to you.
// We found an alias.
const HostPortProxyPair& alias_pair = it->second;

Powered by Google App Engine
This is Rietveld 408576698