| 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 a57f5d7ece3c735168356d8b5d0177cc2def0e98..57abc3f7d28c63fbaf5c40f288aef475e0795ec7 100644
|
| --- a/third_party/WebKit/public/web/WebFrameClient.h
|
| +++ b/third_party/WebKit/public/web/WebFrameClient.h
|
| @@ -73,6 +73,7 @@ class WebDataSource;
|
| class WebEncryptedMediaClient;
|
| class WebExternalPopupMenu;
|
| class WebExternalPopupMenuClient;
|
| +class WebFramelet;
|
| class WebFormElement;
|
| class WebGeolocationClient;
|
| class WebMediaPlayerClient;
|
| @@ -158,6 +159,9 @@ public:
|
| // frameDetached().
|
| virtual WebFrame* createChildFrame(WebLocalFrame* parent, WebTreeScopeType, const WebString& frameName, WebSandboxFlags sandboxFlags, const WebFrameOwnerProperties&) { return nullptr; }
|
|
|
| + // Creates a new framelet.
|
| + virtual WebFramelet* createFramelet(const WebURL& url) { return nullptr; }
|
| +
|
| // This frame has set its opener to another frame, or disowned the opener
|
| // if opener is null. See http://html.spec.whatwg.org/#dom-opener.
|
| virtual void didChangeOpener(WebFrame*) { }
|
|
|