| Index: net/socket/ssl_host_info.h
|
| diff --git a/net/socket/ssl_host_info.h b/net/socket/ssl_host_info.h
|
| index 7f05b5ca708644a51d46db7fad5f44560ef24206..4a7de854c901a3bc95e7a573e1f2ebf9bcd03c2d 100644
|
| --- a/net/socket/ssl_host_info.h
|
| +++ b/net/socket/ssl_host_info.h
|
| @@ -94,6 +94,10 @@ class SSLHostInfo {
|
| return verification_start_time_;
|
| }
|
|
|
| + base::TimeTicks verification_end_time() const {
|
| + return verification_end_time_;
|
| + }
|
| +
|
| protected:
|
| // Parse parses an opaque blob of data and fills out the public member fields
|
| // of this object. It returns true iff the parse was successful. The public
|
| @@ -116,6 +120,7 @@ class SSLHostInfo {
|
| bool rev_checking_enabled_;
|
| bool verify_ev_cert_;
|
| base::TimeTicks verification_start_time_;
|
| + base::TimeTicks verification_end_time_;
|
| CertVerifyResult cert_verify_result_;
|
| scoped_ptr<CertVerifier> verifier_;
|
| scoped_refptr<X509Certificate> cert_;
|
|
|