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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

Issue 1497423002: Revert of Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix conflict Created 5 years 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/network/ResourceResponse.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceResponse.h b/third_party/WebKit/Source/platform/network/ResourceResponse.h
index 9c196063e91b0b446dd947dbc87981734f8198a2..58080de3461d9b23124157483b96f34b99173c9e 100644
--- a/third_party/WebKit/Source/platform/network/ResourceResponse.h
+++ b/third_party/WebKit/Source/platform/network/ResourceResponse.h
@@ -160,9 +160,6 @@ public:
const CString& getSecurityInfo() const { return m_securityInfo; }
void setSecurityInfo(const CString& securityInfo) { m_securityInfo = securityInfo; }
- bool hasMajorCertificateErrors() const { return m_hasMajorCertificateErrors; }
- void setHasMajorCertificateErrors(bool hasMajorCertificateErrors) { m_hasMajorCertificateErrors = hasMajorCertificateErrors; }
-
SecurityStyle securityStyle() const { return m_securityStyle; }
void setSecurityStyle(SecurityStyle securityStyle) { m_securityStyle = securityStyle; }
@@ -271,10 +268,6 @@ private:
// string if not over HTTPS).
CString m_securityInfo;
- // True if the resource was retrieved by the embedder in spite of
- // certificate errors.
- bool m_hasMajorCertificateErrors;
-
// The security style of the resource.
// This only contains a valid value when the DevTools Network domain is
// enabled. (Otherwise, it contains a default value of Unknown.)
@@ -364,7 +357,6 @@ public:
time_t m_lastModifiedDate;
RefPtr<ResourceLoadTiming> m_resourceLoadTiming;
CString m_securityInfo;
- bool m_hasMajorCertificateErrors;
ResourceResponse::SecurityStyle m_securityStyle;
ResourceResponse::SecurityDetails m_securityDetails;
ResourceResponse::HTTPVersion m_httpVersion;

Powered by Google App Engine
This is Rietveld 408576698