Index: sky/engine/core/rendering/RenderView.h |
diff --git a/sky/engine/core/rendering/RenderView.h b/sky/engine/core/rendering/RenderView.h |
index 685aefa141cd44bdcdede3879d135ead0aaf98bc..7f64a1bcb176ed9adaa50728bc0c52b44c706d8b 100644 |
--- a/sky/engine/core/rendering/RenderView.h |
+++ b/sky/engine/core/rendering/RenderView.h |
@@ -23,7 +23,7 @@ |
#define SKY_ENGINE_CORE_RENDERING_RENDERVIEW_H_ |
#include "sky/engine/core/frame/FrameView.h" |
-#include "sky/engine/core/rendering/RenderBlockFlow.h" |
+#include "sky/engine/core/rendering/RenderFlexibleBox.h" |
#include "sky/engine/core/rendering/RenderIFrame.h" |
#include "sky/engine/wtf/OwnPtr.h" |
@@ -33,7 +33,7 @@ namespace blink { |
// It's dimensions match that of the logical viewport (which may be different from |
// the visible viewport in fixed-layout mode), and it is always at position (0,0) |
// relative to the document (and so isn't necessarily in view). |
-class RenderView final : public RenderBlockFlow { |
+class RenderView final : public RenderFlexibleBox { |
public: |
explicit RenderView(Document*); |
virtual ~RenderView(); |
@@ -56,8 +56,6 @@ public: |
virtual void updateLogicalWidth() override; |
virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const override; |
- virtual LayoutUnit availableLogicalHeight(AvailableLogicalHeightType) const override; |
- |
// The same as the FrameView's layoutHeight/layoutWidth but with null check guards. |
int viewHeight() const; |
int viewWidth() const; |