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

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

Issue 2315443003: Stop sending serialized SSLStatus to the renderer. (Closed)
Patch Set: self review fix and merge fix Created 4 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: 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 509143e2e5ac663c32f781d8de7656220d53edd4..40e5dd077236c18454bafd595f1ff46d63da9aa2 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -304,17 +304,6 @@ void WebURLResponse::setAppCacheManifestURL(const WebURL& url)
m_resourceResponse->setAppCacheManifestURL(url);
}
-WebCString WebURLResponse::securityInfo() const
-{
- // FIXME: getSecurityInfo is misnamed.
- return m_resourceResponse->getSecurityInfo();
-}
-
-void WebURLResponse::setSecurityInfo(const WebCString& securityInfo)
-{
- m_resourceResponse->setSecurityInfo(securityInfo);
-}
-
void WebURLResponse::setHasMajorCertificateErrors(bool value)
{
m_resourceResponse->setHasMajorCertificateErrors(value);

Powered by Google App Engine
This is Rietveld 408576698