Chromium Code Reviews| Index: third_party/WebKit/public/web/WebFrameWidget.h |
| diff --git a/third_party/WebKit/public/web/WebFrameWidget.h b/third_party/WebKit/public/web/WebFrameWidget.h |
| index 6db89b5001187e04dd961a26ea619899ff3cc86a..7ed87074f2d528104396254f573b1297f5a8a637 100644 |
| --- a/third_party/WebKit/public/web/WebFrameWidget.h |
| +++ b/third_party/WebKit/public/web/WebFrameWidget.h |
| @@ -69,6 +69,12 @@ public: |
| // persists across subsequent navigations. Defaults to white prior to the |
| // first call to this method. |
| virtual void setBaseBackgroundColor(WebColor) = 0; |
| + |
| + // Returns the local root of this WebFrameWidget. |
| + virtual WebLocalFrame* localRoot() = 0; |
| + |
| + // WebWidget implementation. |
| + bool isWebFrameWidget() const override { return true; } |
|
esprehn
2016/08/02 22:49:55
final
lfg
2016/08/03 16:43:59
Done.
|
| }; |
| } // namespace blink |