diff options
Diffstat (limited to 'net/http/http_response_info.h')
-rw-r--r-- | net/http/http_response_info.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h index 88f89e7..7cbe13c 100644 --- a/net/http/http_response_info.h +++ b/net/http/http_response_info.h @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -13,6 +13,7 @@ namespace net { class HttpResponseHeaders; +class SSLCertRequestInfo; class HttpResponseInfo { public: @@ -41,6 +42,12 @@ class HttpResponseInfo { // will contain additional information about the authentication challenge. scoped_refptr<AuthChallengeInfo> auth_challenge; + // The SSL client certificate request info. + // TODO(wtc): does this really belong in HttpResponseInfo? I put it here + // because it is similar to |auth_challenge|, but unlike HTTP authentication + // challenge, client certificate request is not part of an HTTP response. + scoped_refptr<SSLCertRequestInfo> cert_request_info; + // The SSL connection info (if HTTPS). SSLInfo ssl_info; |