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

Unified Diff: net/http/http_transaction.h

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed changes to SSL and non-net directories Created 6 years, 11 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/http/http_transaction.h
diff --git a/net/http/http_transaction.h b/net/http/http_transaction.h
index 1facef7f8efb3d5e4feba7104c7177b0ce7789d8..b5327607437ed1589ac71c702e2a259120705a69 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,10 @@ 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.
+ 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

Powered by Google App Engine
This is Rietveld 408576698