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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 353713005: Implements new, more robust design for communicating between SSLConnectJobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added checks to determine if false start connections fail, and moved location of enable_job_waiting… Created 6 years, 5 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_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index e759cc5578f23383b7c5410796a242c3ffa805a8..e84458643a9045d0493410fea27bfff1c7e38d9e 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -648,6 +648,12 @@ class FakeSpdySessionClientSocket : public MockClientSocket {
return false;
}
+ bool InSessionCache() const { return false; }
+
+ void OnSessionComplete(const base::Closure& cb) const { return; }
+
+ void OnSocketFailure(const base::Closure& cb) { return; }
wtc 2014/07/08 01:25:43 Are you sure we need to add these three methods?
mshelley 2014/07/09 19:51:02 Done.
+
private:
int read_result_;
};
« net/socket/ssl_session_cache_openssl.cc ('K') | « net/socket/ssl_session_cache_openssl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698