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

Unified Diff: webkit/fileapi/file_writer_delegate.cc

Issue 7976036: net: make HSTS hosts use the normal SSL interstitials (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 3 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
Index: webkit/fileapi/file_writer_delegate.cc
diff --git a/webkit/fileapi/file_writer_delegate.cc b/webkit/fileapi/file_writer_delegate.cc
index db28a22e21d78340a9ae7037a091dcc04d8b42f5..3d4b3b695c57c6635929c72c2e99bb3e7dfcb96e 100644
--- a/webkit/fileapi/file_writer_delegate.cc
+++ b/webkit/fileapi/file_writer_delegate.cc
@@ -156,7 +156,8 @@ void FileWriterDelegate::OnCertificateRequested(
}
void FileWriterDelegate::OnSSLCertificateError(
- net::URLRequest* request, int cert_error, net::X509Certificate* cert) {
+ net::URLRequest* request, int cert_error, const net::SSLInfo& ssl_info,
+ bool must_be_fatal) {
wtc 2011/09/23 00:04:51 Probably should use the formatting style recommend
NOTREACHED();
OnError(base::PLATFORM_FILE_ERROR_SECURITY);
}

Powered by Google App Engine
This is Rietveld 408576698