| Index: content/public/browser/content_browser_client.h
|
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
|
| index 1726f1a179f65c4dec88dc4298e85290897a4476..601717386a3b215767d235af64e6df87436226ea 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -460,19 +460,17 @@ class CONTENT_EXPORT ContentBrowserClient {
|
| // Informs the embedder that a certificate error has occured. If
|
| // |overridable| is true and if |strict_enforcement| is false, the user
|
| // can ignore the error and continue. The embedder can call the callback
|
| - // asynchronously. If |result| is not set to
|
| - // CERTIFICATE_REQUEST_RESULT_TYPE_CONTINUE, the request will be cancelled
|
| - // or denied immediately, and the callback won't be run.
|
| - virtual void AllowCertificateError(WebContents* web_contents,
|
| - int cert_error,
|
| - const net::SSLInfo& ssl_info,
|
| - const GURL& request_url,
|
| - ResourceType resource_type,
|
| - bool overridable,
|
| - bool strict_enforcement,
|
| - bool expired_previous_decision,
|
| - const base::Callback<void(bool)>& callback,
|
| - CertificateRequestResultType* result) {}
|
| + // asynchronously.
|
| + virtual void AllowCertificateError(
|
| + WebContents* web_contents,
|
| + int cert_error,
|
| + const net::SSLInfo& ssl_info,
|
| + const GURL& request_url,
|
| + ResourceType resource_type,
|
| + bool overridable,
|
| + bool strict_enforcement,
|
| + bool expired_previous_decision,
|
| + const base::Callback<void(CertificateRequestResultType)>& callback) {}
|
|
|
| // Selects a SSL client certificate and returns it to the |delegate|. Note:
|
| // |delegate| may be called synchronously or asynchronously.
|
|
|