| Index: content/browser/ssl/ssl_policy.h
|
| diff --git a/content/browser/ssl/ssl_policy.h b/content/browser/ssl/ssl_policy.h
|
| index a4644ef7b98991eb3c16233847283aafeaffc2ce..8df01a16e96b43dd213fc0c5ae76be34bbd0dbc9 100644
|
| --- a/content/browser/ssl/ssl_policy.h
|
| +++ b/content/browser/ssl/ssl_policy.h
|
| @@ -19,7 +19,6 @@ namespace content {
|
| class NavigationEntryImpl;
|
| class SSLCertErrorHandler;
|
| class SSLPolicyBackend;
|
| -class SSLRequestInfo;
|
| class WebContents;
|
|
|
| // SSLPolicy
|
| @@ -38,8 +37,11 @@ class SSLPolicy {
|
| void DidRunInsecureContent(NavigationEntryImpl* entry,
|
| const GURL& security_origin);
|
|
|
| - // We have started a resource request with the given info.
|
| - void OnRequestStarted(SSLRequestInfo* info);
|
| + // We have started a resource request for |url| with the given |cert_id| and
|
| + // |cert_status|.
|
| + void OnRequestStarted(const GURL& url,
|
| + int cert_id,
|
| + net::CertStatus cert_status);
|
|
|
| // Update the SSL information in |entry| to match the current state.
|
| // |web_contents| is the WebContents associated with this entry.
|
|
|