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

Unified Diff: content/renderer/render_frame_impl.cc

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
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index 4c5d7a3e37e4de3e3fa88be809293cc7e867c2ec..cfb686214eaff9018bb817f1d707d77c03a076cb 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -4198,15 +4198,13 @@ void RenderFrameImpl::didRunInsecureContent(
}
void RenderFrameImpl::didDisplayContentWithCertificateErrors(
- const blink::WebURL& url,
- const blink::WebCString& security_info) {
+ const blink::WebURL& url) {
Send(new FrameHostMsg_DidDisplayContentWithCertificateErrors(
routing_id_, url));
}
void RenderFrameImpl::didRunContentWithCertificateErrors(
- const blink::WebURL& url,
- const blink::WebCString& security_info) {
+ const blink::WebURL& url) {
Send(new FrameHostMsg_DidRunContentWithCertificateErrors(routing_id_, url));
}
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698