Chromium Code Reviews| Index: third_party/WebKit/public/web/WebFrameClient.h |
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h |
| index fe84a47512db8374cb459984c4ad808d4f73ceb5..2d708371889eec5e82fb7ebd773c257b9a3cb067 100644 |
| --- a/third_party/WebKit/public/web/WebFrameClient.h |
| +++ b/third_party/WebKit/public/web/WebFrameClient.h |
| @@ -67,6 +67,7 @@ class WebColorChooser; |
| class WebColorChooserClient; |
| class WebContentDecryptionModule; |
| class WebCookieJar; |
| +class WebCString; |
| class WebDataSource; |
| class WebEncryptedMediaClient; |
| class WebExternalPopupMenu; |
| @@ -447,6 +448,13 @@ public: |
| // A PingLoader was created, and a request dispatched to a URL. |
| virtual void didDispatchPingLoader(WebLocalFrame*, const WebURL&) { } |
| + // This frame has displayed inactive content (such as an image) from |
| + // a connection with certificate errors. |
| + virtual void didDisplayContentWithCertificateErrors(const WebURL& url, const WebCString& securityInfo, const WebURL& mainResourceUrl, const WebCString& mainResourceSecurityInfo) {} |
| + // This frame has run inactive content (such as a script) from a |
|
dcheng
2015/11/28 09:52:11
Isn't script "active" content?
estark
2015/11/30 18:13:27
Thanks -- that was a mistake, fixed.
|
| + // connection with certificate errors. |
| + virtual void didRunContentWithCertificateErrors(const WebURL& url, const WebCString& securityInfo, const WebURL& mainResourceUrl, const WebCString& mainResourceSecurityInfo) {} |
| + |
| // A performance timing event (e.g. first paint) occurred |
| virtual void didChangePerformanceTiming() { } |