summaryrefslogtreecommitdiffstats
path: root/net/http/http_transaction.h
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 16:48:46 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 16:48:46 +0000
commitefe22215cad3c4541a443339d948c226d54e44c5 (patch)
tree2e8f8489f6b89a594bdb891120324c730178a087 /net/http/http_transaction.h
parentf18531246f728226c9b2a62f425dfb8db38af243 (diff)
downloadchromium_src-efe22215cad3c4541a443339d948c226d54e44c5.zip
chromium_src-efe22215cad3c4541a443339d948c226d54e44c5.tar.gz
chromium_src-efe22215cad3c4541a443339d948c226d54e44c5.tar.bz2
Remove SSLHostInfo.
BUG=105208 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144468 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_transaction.h')
-rw-r--r--net/http/http_transaction.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/net/http/http_transaction.h b/net/http/http_transaction.h
index c3bc517..ab41732 100644
--- a/net/http/http_transaction.h
+++ b/net/http/http_transaction.h
@@ -18,7 +18,6 @@ struct HttpRequestInfo;
class HttpResponseInfo;
class IOBuffer;
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
@@ -111,11 +110,6 @@ class NET_EXPORT_PRIVATE HttpTransaction {
// Returns the upload progress in bytes. If there is no upload data,
// zero will be returned. This does not include the request headers.
virtual uint64 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.
- virtual void SetSSLHostInfo(SSLHostInfo*) { };
};
} // namespace net