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

Unified Diff: android_webview/browser/aw_ssl_host_state_delegate.cc

Issue 2226523002: Add separate plumbing for subresources with certificate errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 4 years, 4 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: android_webview/browser/aw_ssl_host_state_delegate.cc
diff --git a/android_webview/browser/aw_ssl_host_state_delegate.cc b/android_webview/browser/aw_ssl_host_state_delegate.cc
index 1da47472fb4b38f3fed193c2e519d409fdfbfd40..d6bc5899c66d986b24887084f7d4414b1b0bd2ba 100644
--- a/android_webview/browser/aw_ssl_host_state_delegate.cc
+++ b/android_webview/browser/aw_ssl_host_state_delegate.cc
@@ -66,6 +66,19 @@ bool AwSSLHostStateDelegate::DidHostRunInsecureContent(const std::string& host,
return false;
}
+void AwSSLHostStateDelegate::HostRanContentWithCertificateErrors(
+ const std::string& host,
+ int pid) {
+ // Intentional no-op for Android WebView.
+}
+
+bool AwSSLHostStateDelegate::DidHostRunContentWithCertificateErrors(
+ const std::string& host,
+ int pid) const {
+ // Intentional no-op for Android WebView.
+ return false;
+}
+
void AwSSLHostStateDelegate::AllowCert(const std::string& host,
const net::X509Certificate& cert,
net::CertStatus error) {
« no previous file with comments | « android_webview/browser/aw_ssl_host_state_delegate.h ('k') | chrome/browser/ssl/chrome_security_state_model_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698