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 42811e6aa968673f98a38a6e73f521f592b5af98..1885fe224d56f7333f3b8dcda72a9641ec586747 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -383,17 +383,16 @@ class CONTENT_EXPORT ContentBrowserClient { |
// 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( |
- int render_process_id, |
- int render_frame_id, |
- int cert_error, |
- const net::SSLInfo& ssl_info, |
- const GURL& request_url, |
- ResourceType::Type resource_type, |
- bool overridable, |
- bool strict_enforcement, |
- const base::Callback<void(bool)>& callback, |
- CertificateRequestResultType* result) {} |
+ virtual void AllowCertificateError(int render_process_id, |
+ int render_frame_id, |
+ int cert_error, |
+ const net::SSLInfo& ssl_info, |
+ const GURL& request_url, |
+ ResourceType resource_type, |
+ bool overridable, |
+ bool strict_enforcement, |
+ const base::Callback<void(bool)>& callback, |
+ CertificateRequestResultType* result) {} |
// Selects a SSL client certificate and returns it to the |callback|. If no |
// certificate was selected NULL is returned to the |callback|. |