Index: content/renderer/render_frame_impl.h |
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h |
index bd386d4bcae542ffbe090621683a606c1b699a19..0d8c4053cd49b077887abac1250c6ed1b8420b9f 100644 |
--- a/content/renderer/render_frame_impl.h |
+++ b/content/renderer/render_frame_impl.h |
@@ -519,6 +519,13 @@ class CONTENT_EXPORT RenderFrameImpl |
void didDisplayInsecureContent() override; |
void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
const blink::WebURL& target) override; |
+ void didDisplayContentWithCertificateErrors( |
+ const blink::WebURL& url, |
+ const blink::WebCString& security_info) override; |
jww
2015/11/20 01:25:08
Why are these WebCStrings instead of WebStrings? I
estark
2015/11/23 23:40:24
I was going off of other APIs that expose security
jww
2015/11/25 19:24:02
Nope, not really. Can you email chromium-dev or bl
|
+ void didRunContentWithCertificateErrors( |
+ const blink::WebSecurityOrigin& origin, |
+ const blink::WebURL& url, |
+ const blink::WebCString& security_info) override; |
void didChangePerformanceTiming() override; |
void didAbortLoading(blink::WebLocalFrame* frame) override; |
void didCreateScriptContext(blink::WebLocalFrame* frame, |