| Index: sky/engine/core/rendering/RenderView.h
|
| diff --git a/sky/engine/core/rendering/RenderView.h b/sky/engine/core/rendering/RenderView.h
|
| index 872df224f147f87f2a9f755c38c13b5855127f79..d342a12584e33c0aa36ed919585682d6f5631dcb 100644
|
| --- a/sky/engine/core/rendering/RenderView.h
|
| +++ b/sky/engine/core/rendering/RenderView.h
|
| @@ -32,8 +32,6 @@
|
|
|
| namespace blink {
|
|
|
| -class RenderLayerCompositor;
|
| -
|
| // The root of the render tree, corresponding to the CSS initial containing block.
|
| // 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)
|
| @@ -79,8 +77,6 @@ public:
|
|
|
| void invalidatePaintForRectangle(const LayoutRect&) const;
|
|
|
| - void invalidatePaintForViewAndCompositedLayers();
|
| -
|
| virtual void paint(PaintInfo&, const LayoutPoint&) override;
|
| virtual void paintBoxDecorationBackground(PaintInfo&, const LayoutPoint&) override;
|
|
|
| @@ -106,12 +102,6 @@ public:
|
|
|
| virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) override;
|
|
|
| - // Notification that this view moved into or out of a native window.
|
| - void setIsInWindow(bool);
|
| -
|
| - RenderLayerCompositor* compositor();
|
| - bool usesCompositing() const;
|
| -
|
| IntRect unscaledDocumentRect() const;
|
| LayoutRect backgroundRect(RenderBox* backgroundRenderer) const;
|
|
|
| @@ -161,7 +151,6 @@ private:
|
| int m_selectionEndPos;
|
|
|
| LayoutState* m_layoutState;
|
| - OwnPtr<RenderLayerCompositor> m_compositor;
|
|
|
| unsigned m_renderCounterCount;
|
|
|
|
|