Chromium Code Reviews| Index: net/http/http_transaction.h |
| diff --git a/net/http/http_transaction.h b/net/http/http_transaction.h |
| index 1facef7f8efb3d5e4feba7104c7177b0ce7789d8..d243cd3d37a3af179138092e314c52f421678701 100644 |
| --- a/net/http/http_transaction.h |
| +++ b/net/http/http_transaction.h |
| @@ -22,6 +22,7 @@ class HttpResponseInfo; |
| class IOBuffer; |
| struct LoadTimingInfo; |
| class X509Certificate; |
| +class SSLHostInfo; |
| // Represents a single HTTP transaction (i.e., a single request/response pair). |
| // HTTP redirects are not followed and authentication challenges are not |
| @@ -133,6 +134,11 @@ class NET_EXPORT_PRIVATE HttpTransaction { |
| // zero will be returned. This does not include the request headers. |
| virtual UploadProgress GetUploadProgress() const = 0; |
| + // SetSSLHostInfo sets a object which reads and writes public information |
| + // about an SSL server. It's used to implement Snap Start. |
| + // TODO(agl): remove this. |
|
wtc
2014/01/15 19:08:59
Remove "It's used to implement Snap Start." and "T
ramant (doing other things)
2014/01/18 00:21:56
Done.
|
| + virtual void SetSSLHostInfo(SSLHostInfo*) { }; |
| + |
| // Populates all of load timing, except for request start times and receive |
| // headers time. |
| // |load_timing_info| must have all null times when called. Returns false and |