| Index: Source/core/rendering/RenderPart.h
|
| diff --git a/Source/core/rendering/RenderPart.h b/Source/core/rendering/RenderPart.h
|
| index 95294da1eed9cca1a14a5de871f55d27fe490076..9a5af6dfa813c781e649472c11350513c9cbf208 100644
|
| --- a/Source/core/rendering/RenderPart.h
|
| +++ b/Source/core/rendering/RenderPart.h
|
| @@ -33,13 +33,13 @@ public:
|
| explicit RenderPart(Element*);
|
| virtual ~RenderPart();
|
|
|
| - virtual void setWidget(PassRefPtr<Widget>);
|
| + virtual void setWidget(PassRefPtr<Widget>) FINAL;
|
| virtual void viewCleared();
|
|
|
| bool requiresAcceleratedCompositing() const;
|
|
|
| - virtual bool needsPreferredWidthsRecalculation() const;
|
| - virtual RenderBox* embeddedContentBox() const;
|
| + virtual bool needsPreferredWidthsRecalculation() const FINAL;
|
| + virtual RenderBox* embeddedContentBox() const FINAL;
|
|
|
| virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) OVERRIDE;
|
|
|
| @@ -47,7 +47,7 @@ protected:
|
| virtual bool requiresLayer() const;
|
|
|
| private:
|
| - virtual bool isRenderPart() const { return true; }
|
| + virtual bool isRenderPart() const FINAL { return true; }
|
| virtual const char* renderName() const { return "RenderPart"; }
|
| };
|
|
|
|
|