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..a2d885129ebebe4d68eb7ddbc045c7d95beb5354 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,12 @@ 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) or run |
| + // active content (such as a script) from a connection with |
|
jww
2015/11/20 01:25:09
Please make it more clear that the first half of t
estark
2015/11/23 23:40:24
Done.
|
| + // certificate errors. |
| + virtual void didDisplayContentWithCertificateErrors(const WebURL& url, const WebCString& securityInfo) {} |
| + virtual void didRunContentWithCertificateErrors(const WebSecurityOrigin&, const WebURL& url, const WebCString& securityInfo) {} |
| + |
| // A performance timing event (e.g. first paint) occurred |
| virtual void didChangePerformanceTiming() { } |