| Index: content/browser/loader/resource_loader.h
|
| diff --git a/content/browser/loader/resource_loader.h b/content/browser/loader/resource_loader.h
|
| index 5046358b2ec7ff7eeb963889ef51d75baa5e4cac..6cbb2b3466ea7c6bdb87555a816214b23de78f09 100644
|
| --- a/content/browser/loader/resource_loader.h
|
| +++ b/content/browser/loader/resource_loader.h
|
| @@ -26,6 +26,7 @@ class CertStore;
|
| class ResourceDispatcherHostLoginDelegate;
|
| class ResourceLoaderDelegate;
|
| class ResourceRequestInfoImpl;
|
| +struct SSLStatus;
|
|
|
| // This class is responsible for driving the URLRequest (i.e., calling Start,
|
| // Read, and servicing events). It has a ResourceHandler, which is typically a
|
| @@ -35,6 +36,12 @@ class CONTENT_EXPORT ResourceLoader : public net::URLRequest::Delegate,
|
| public SSLClientAuthHandler::Delegate,
|
| public ResourceController {
|
| public:
|
| + static void GetSSLStatusForRequest(const GURL& url,
|
| + const net::SSLInfo& ssl_info,
|
| + int child_id,
|
| + CertStore* cert_store,
|
| + SSLStatus* ssl_status);
|
| +
|
| ResourceLoader(std::unique_ptr<net::URLRequest> request,
|
| std::unique_ptr<ResourceHandler> handler,
|
| CertStore* cert_store,
|
|
|