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 66e2a05ee044ba563d9bb0ad9fb505eed4f920ba..5b235e0ed97c47ca20516e40af4dce03f4254e5c 100644 |
--- a/third_party/WebKit/public/web/WebFrameClient.h |
+++ b/third_party/WebKit/public/web/WebFrameClient.h |
@@ -72,6 +72,7 @@ class WebDataSource; |
class WebEncryptedMediaClient; |
class WebExternalPopupMenu; |
class WebExternalPopupMenuClient; |
+class WebFramelet; |
class WebFormElement; |
class WebGeolocationClient; |
class WebMediaPlayer; |
@@ -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*) { } |