Chromium Code Reviews| Index: third_party/WebKit/Source/web/WebLocalFrameImpl.h |
| diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.h b/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
| index 7e531182a4165f42128fc4f058a15f7b652a1417..150afc717418915eb2ed142a8ca0850b22f28249 100644 |
| --- a/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
| +++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.h |
| @@ -35,6 +35,7 @@ |
| #include "core/frame/LocalFrame.h" |
| #include "platform/geometry/FloatRect.h" |
| #include "public/platform/WebFileSystemType.h" |
| +#include "public/web/WebFrameWidget.h" |
| #include "public/web/WebLocalFrame.h" |
| #include "web/FrameLoaderClientImpl.h" |
| #include "web/UserMediaClientImpl.h" |
| @@ -59,7 +60,6 @@ class WebDataSourceImpl; |
| class WebDevToolsAgentImpl; |
| class WebDevToolsFrontendImpl; |
| class WebFrameClient; |
| -class WebFrameWidget; |
| class WebNode; |
| class WebPerformance; |
| class WebPlugin; |
| @@ -243,6 +243,7 @@ public: |
| void findMatchRects(WebVector<WebFloatRect>&) override; |
| int selectNearestFindMatch(const WebFloatPoint&, WebRect* selectionRect) override; |
| void setTickmarks(const WebVector<WebRect>&) override; |
| + WebFrameWidget* frameWidget() const override; |
|
dcheng
2016/05/04 04:55:30
Nit: let's call this widget (frame should be impli
lfg
2016/05/04 19:37:33
I'll do this in a separate patch, since there are
|
| // WebFrameImplBase methods: |
| void initializeCoreFrame(FrameHost*, FrameOwner*, const AtomicString& name, const AtomicString& uniqueName) override; |
| @@ -320,7 +321,6 @@ public: |
| VisiblePosition visiblePositionForViewportPoint(const WebPoint&); |
| void setFrameWidget(WebFrameWidget*); |
| - WebFrameWidget* frameWidget() const; |
| // DevTools front-end bindings. |
| void setDevToolsFrontend(WebDevToolsFrontendImpl* frontend) { m_webDevToolsFrontend = frontend; } |