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

Unified Diff: net/socket/socket_test_util.cc

Issue 384873002: This CL changes the lifespan of SSLConnectJobMessengers so that they are created only when needed, (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@useloop
Patch Set: Removed FormatSessionCacheKey function. 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/socket/socket_test_util.cc
diff --git a/net/socket/socket_test_util.cc b/net/socket/socket_test_util.cc
index d66f37c9c154f50038eeaafe8501624de998171c..14ac644b4eb70a525ede5d6d36350953e767ba84 100644
--- a/net/socket/socket_test_util.cc
+++ b/net/socket/socket_test_util.cc
@@ -780,6 +780,11 @@ void MockClientSocket::GetSSLCertRequestInfo(
SSLCertRequestInfo* cert_request_info) {
}
+std::string MockClientSocket::GetSessionCacheKey() const {
+ NOTREACHED();
+ return "";
Ryan Sleevi 2014/07/25 21:40:07 return std::string()
mshelley 2014/07/28 21:05:32 Done.
+}
+
bool MockClientSocket::InSessionCache() const {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698