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

Unified Diff: third_party/WebKit/Source/web/FrameLoaderClientImpl.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/web/FrameLoaderClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
index d010d789ee4d498d605f90fadbe965e93cf777fb..ee640a78ca335f65058d8688352e8d7afb351799 100644
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
@@ -662,16 +662,16 @@ void FrameLoaderClientImpl::didDispatchPingLoader(const KURL& url)
m_webFrame->client()->didDispatchPingLoader(url);
}
-void FrameLoaderClientImpl::didDisplayContentWithCertificateErrors(const KURL& url, const CString& securityInfo)
+void FrameLoaderClientImpl::didDisplayContentWithCertificateErrors(const KURL& url)
{
if (m_webFrame->client())
- m_webFrame->client()->didDisplayContentWithCertificateErrors(url, securityInfo);
+ m_webFrame->client()->didDisplayContentWithCertificateErrors(url);
}
-void FrameLoaderClientImpl::didRunContentWithCertificateErrors(const KURL& url, const CString& securityInfo)
+void FrameLoaderClientImpl::didRunContentWithCertificateErrors(const KURL& url)
{
if (m_webFrame->client())
- m_webFrame->client()->didRunContentWithCertificateErrors(url, securityInfo);
+ m_webFrame->client()->didRunContentWithCertificateErrors(url);
}
void FrameLoaderClientImpl::didChangePerformanceTiming()
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.h ('k') | third_party/WebKit/public/platform/WebURLResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698