Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(951)

Unified Diff: content/browser/ssl/ssl_cert_error_handler.cc

Issue 10073023: TabContents -> WebContentsImpl, part 14. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/speech/speech_recognition_manager_impl.cc ('k') | content/browser/ssl/ssl_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « content/browser/speech/speech_recognition_manager_impl.cc ('k') | content/browser/ssl/ssl_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698