| Index: content/browser/ssl/ssl_cert_error_handler.cc
|
| diff --git a/content/browser/ssl/ssl_cert_error_handler.cc b/content/browser/ssl/ssl_cert_error_handler.cc
|
| index 2975797aee6b0cefed187d5251ede38824f52fb8..9acd5df00edf5d36a93d813d2cb847d831273de9 100644
|
| --- a/content/browser/ssl/ssl_cert_error_handler.cc
|
| +++ b/content/browser/ssl/ssl_cert_error_handler.cc
|
| @@ -33,10 +33,9 @@ SSLCertErrorHandler* SSLCertErrorHandler::AsSSLCertErrorHandler() {
|
| }
|
|
|
| void SSLCertErrorHandler::OnDispatchFailed() {
|
| - // Requests that don't have a tab (i.e. requests from extensions) will fail
|
| - // to dispatch because they don't have a TabContents. See crbug.com/86537. In
|
| - // this case we have to make a decision in this function, so we ignore
|
| - // revocation check failures.
|
| + // Requests can fail to dispatch because they don't have a WebContents. See
|
| + // <http://crbug.com/86537>. In this case we have to make a decision in this
|
| + // function, so we ignore revocation check failures.
|
| if (net::IsCertStatusMinorError(ssl_info().cert_status)) {
|
| ContinueRequest();
|
| } else {
|
|
|