| Index: third_party/WebKit/public/web/WebLocalFrame.h
|
| diff --git a/third_party/WebKit/public/web/WebLocalFrame.h b/third_party/WebKit/public/web/WebLocalFrame.h
|
| index 7dd32559f963276187c6abdf5c307cec2696d570..2e28119fefe208aeb96a54edff4cb49367bd861e 100644
|
| --- a/third_party/WebKit/public/web/WebLocalFrame.h
|
| +++ b/third_party/WebKit/public/web/WebLocalFrame.h
|
| @@ -18,6 +18,7 @@ class WebFrameClient;
|
| class WebNode;
|
| class WebScriptExecutionCallback;
|
| class WebSuspendableTask;
|
| +class WebWidget;
|
| enum class WebAppBannerPromptReply;
|
| enum class WebCachePolicy;
|
| enum class WebSandboxFlags;
|
| @@ -321,6 +322,10 @@ public:
|
| // Returns the node that the context menu opened over.
|
| virtual WebNode contextMenuNode() const = 0;
|
|
|
| + // Returns the WebFrameWidget associated with this frame if there is one or
|
| + // nullptr otherwise.
|
| + virtual WebWidget* frameWidget() const = 0;
|
| +
|
| protected:
|
| explicit WebLocalFrame(WebTreeScopeType scope) : WebFrame(scope) { }
|
|
|
|
|