Index: net/socket/socket_test_util.h |
diff --git a/net/socket/socket_test_util.h b/net/socket/socket_test_util.h |
index 4a15f37c060c6fe9a3f350b94f5e77e1ca36b736..c183aac4e25854e097505a8e4856c26b3c2dbbf3 100644 |
--- a/net/socket/socket_test_util.h |
+++ b/net/socket/socket_test_util.h |
@@ -247,13 +247,15 @@ struct SSLSocketDataProvider { |
: connect(async, result), |
next_proto_status(SSLClientSocket::kNextProtoUnsupported), |
was_npn_negotiated(false), |
- cert_request_info(NULL) { } |
+ cert_request_info(NULL), |
+ login_request_info(NULL) { } |
MockConnect connect; |
SSLClientSocket::NextProtoStatus next_proto_status; |
std::string next_proto; |
bool was_npn_negotiated; |
net::SSLCertRequestInfo* cert_request_info; |
+ net::AuthChallengeInfo* login_request_info; |
}; |
// A DataProvider where the client must write a request before the reads (e.g. |