Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1631)

Unified Diff: Source/platform/graphics/filters/FELighting.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/graphics/filters/FEGaussianBlur.h ('k') | Source/platform/graphics/filters/FEMerge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/platform/graphics/filters/FEGaussianBlur.h ('k') | Source/platform/graphics/filters/FEMerge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698