| Index: Source/platform/graphics/filters/PointLightSource.h
|
| diff --git a/Source/platform/graphics/filters/PointLightSource.h b/Source/platform/graphics/filters/PointLightSource.h
|
| index 6b7178fa0c0a1302afb17cfe990797e65800fbec..0ac5f2f9a15c94294e116fd7c3bf09cd68345350 100644
|
| --- a/Source/platform/graphics/filters/PointLightSource.h
|
| +++ b/Source/platform/graphics/filters/PointLightSource.h
|
| @@ -34,19 +34,19 @@ public:
|
| return adoptRef(new PointLightSource(position));
|
| }
|
|
|
| - virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const OVERRIDE
|
| + virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const override
|
| {
|
| FloatPoint3D position(m_position.x() * scale.x() - offset.width(), m_position.y() * scale.y() - offset.height(), m_position.z() * scale.z());
|
| return adoptRef(new PointLightSource(position));
|
| }
|
|
|
| const FloatPoint3D& position() const { return m_position; }
|
| - virtual bool setPosition(const FloatPoint3D&) OVERRIDE;
|
| + virtual bool setPosition(const FloatPoint3D&) override;
|
|
|
| - virtual void initPaintingData(PaintingData&) const OVERRIDE;
|
| - virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE;
|
| + virtual void initPaintingData(PaintingData&) const override;
|
| + virtual void updatePaintingData(PaintingData&, int x, int y, float z) const override;
|
|
|
| - virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE;
|
| + virtual TextStream& externalRepresentation(TextStream&) const override;
|
|
|
| private:
|
| PointLightSource(const FloatPoint3D& position)
|
|
|