| Index: sky/engine/core/rendering/RenderView.h
|
| diff --git a/sky/engine/core/rendering/RenderView.h b/sky/engine/core/rendering/RenderView.h
|
| index 180e4b60d6ed99746ad43b8bd291080e3c63c2f5..f742e162e43867cbea59667848c7d0d2fe1c8139 100644
|
| --- a/sky/engine/core/rendering/RenderView.h
|
| +++ b/sky/engine/core/rendering/RenderView.h
|
| @@ -60,12 +60,9 @@ public:
|
| virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const override;
|
|
|
| // The same as the FrameView's layoutHeight/layoutWidth but with null check guards.
|
| - int viewHeight(IncludeScrollbarsInRect = ExcludeScrollbars) const;
|
| - int viewWidth(IncludeScrollbarsInRect = ExcludeScrollbars) const;
|
| - int viewLogicalWidth() const
|
| - {
|
| - return viewWidth(ExcludeScrollbars);
|
| - }
|
| + int viewHeight() const;
|
| + int viewWidth() const;
|
| + int viewLogicalWidth() const { return viewWidth(); }
|
| int viewLogicalHeight() const;
|
| LayoutUnit viewLogicalHeightForPercentages() const;
|
|
|
|
|