| Index: Source/platform/graphics/filters/FELighting.h
|
| diff --git a/Source/platform/graphics/filters/FELighting.h b/Source/platform/graphics/filters/FELighting.h
|
| index 422dc8d7dc90bc6acc6160a07edb7e609e49a68f..4ca9f232faa1ea4d02e6aad022bef3a7b8a16e6b 100644
|
| --- a/Source/platform/graphics/filters/FELighting.h
|
| +++ b/Source/platform/graphics/filters/FELighting.h
|
| @@ -42,7 +42,7 @@ namespace blink {
|
|
|
| class PLATFORM_EXPORT FELighting : public FilterEffect {
|
| public:
|
| - virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) OVERRIDE;
|
| + virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
|
|
|
| protected:
|
| static const int s_minimalRectDimension = 100 * 100; // Empirical data limit for parallel jobs
|
| @@ -83,8 +83,8 @@ protected:
|
| int yEnd;
|
| };
|
|
|
| - virtual FloatRect mapPaintRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
|
| - virtual bool affectsTransparentPixels() OVERRIDE { return true; }
|
| + virtual FloatRect mapPaintRect(const FloatRect&, bool forward = true) override FINAL;
|
| + virtual bool affectsTransparentPixels() override { return true; }
|
|
|
| static void platformApplyGenericWorker(PlatformApplyGenericParameters*);
|
|
|
| @@ -115,7 +115,7 @@ protected:
|
| float m_kernelUnitLengthY;
|
|
|
| private:
|
| - virtual void applySoftware() OVERRIDE;
|
| + virtual void applySoftware() override;
|
|
|
| void getTransform(FloatPoint3D* scale, FloatSize* offset) const;
|
| };
|
|
|