| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index b1f59cf0f021ea0882362ab93a622024781a75f8..c46ee1d490b23307a6b1499050d4eef94e1c7fe4 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -107,7 +107,13 @@ public:
|
|
|
| Page* page() const;
|
|
|
| + // TODO(pilgrim) replace all instances of layoutView() with layoutViewItem()
|
| + // https://crbug.com/499321
|
| LayoutView* layoutView() const;
|
| + LayoutViewItem layoutViewItem() const
|
| + {
|
| + return LayoutViewItem(this->layoutView());
|
| + }
|
|
|
| void setCanHaveScrollbars(bool);
|
|
|
| @@ -763,11 +769,6 @@ private:
|
| LayoutBox& boxForScrollControlPaintInvalidation() const override;
|
| LayoutScrollbarPart* resizer() const override { return nullptr; }
|
|
|
| - LayoutViewItem layoutViewItem() const
|
| - {
|
| - return LayoutViewItem(this->layoutView());
|
| - }
|
| -
|
| LayoutSize m_size;
|
|
|
| typedef HashSet<RefPtr<LayoutEmbeddedObject>> EmbeddedObjectSet;
|
|
|