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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp

Issue 1415923015: Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary includes Created 5 years, 1 month 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: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index 46f5dbfe9b9aad0d8153a1b86b80b9853cd09cac..1db5f46051578a8947871ae9e8ecc6066c2a1df0 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -305,6 +305,11 @@ void WebURLResponse::setSecurityInfo(const WebCString& securityInfo)
m_private->m_resourceResponse->setSecurityInfo(securityInfo);
}
+void WebURLResponse::setHasCertificateErrors(bool value)
+{
+ m_private->m_resourceResponse->setHasCertificateErrors(value);
+}
+
WebURLResponse::SecurityStyle WebURLResponse::securityStyle() const
{
return static_cast<SecurityStyle>(m_private->m_resourceResponse->securityStyle());

Powered by Google App Engine
This is Rietveld 408576698