| 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 58563a2eaeea0caf6704ea0cb6ac0a7973a318d0..9152342e4417194c0267b7923ebe7683732647ef 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -127,7 +127,7 @@ public:
|
| bool needsLayout() const;
|
| void setNeedsLayout();
|
|
|
| - void setNeedsUpdateWidgetPositions() { m_needsUpdateWidgetPositions = true; }
|
| + void setNeedsUpdateWidgetGeometries() { m_needsUpdateWidgetGeometries = true; }
|
|
|
| // Methods for getting/setting the size Blink should use to layout the contents.
|
| // NOTE: Scrollbar exclusion is based on the FrameView's scrollbars. To exclude
|
| @@ -215,7 +215,7 @@ public:
|
| void addPart(LayoutPart*);
|
| void removePart(LayoutPart*);
|
|
|
| - void updateWidgetPositions();
|
| + void updateWidgetGeometries();
|
|
|
| void addPartToUpdate(LayoutEmbeddedObject&);
|
|
|
| @@ -679,7 +679,7 @@ private:
|
| IntPoint convertToContainingWidget(const IntPoint&) const override;
|
| IntPoint convertFromContainingWidget(const IntPoint&) const override;
|
|
|
| - void updateWidgetPositionsIfNeeded();
|
| + void updateWidgetGeometriesIfNeeded();
|
|
|
| bool wasViewportResized();
|
| void sendResizeEventIfNeeded();
|
| @@ -837,7 +837,7 @@ private:
|
|
|
| float m_topControlsViewportAdjustment;
|
|
|
| - bool m_needsUpdateWidgetPositions;
|
| + bool m_needsUpdateWidgetGeometries;
|
| bool m_needsUpdateViewportIntersection;
|
| bool m_needsUpdateViewportIntersectionInSubtree;
|
|
|
|
|