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

Unified Diff: Source/platform/graphics/filters/FEComponentTransfer.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/FEColorMatrix.h ('k') | Source/platform/graphics/filters/FEComposite.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/FEComponentTransfer.h
diff --git a/Source/platform/graphics/filters/FEComponentTransfer.h b/Source/platform/graphics/filters/FEComponentTransfer.h
index 920c8941ac6e663eed6e60db54c52e7391ae0147..51e01f13862e7894383a3597e07d688993c829fb 100644
--- a/Source/platform/graphics/filters/FEComponentTransfer.h
+++ b/Source/platform/graphics/filters/FEComponentTransfer.h
@@ -77,17 +77,17 @@ public:
ComponentTransferFunction alphaFunction() const;
void setAlphaFunction(const ComponentTransferFunction&);
- virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) OVERRIDE;
+ virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
- virtual TextStream& externalRepresentation(TextStream&, int indention) const OVERRIDE;
+ virtual TextStream& externalRepresentation(TextStream&, int indention) const override;
private:
FEComponentTransfer(Filter*, const ComponentTransferFunction& redFunc, const ComponentTransferFunction& greenFunc,
const ComponentTransferFunction& blueFunc, const ComponentTransferFunction& alphaFunc);
- virtual void applySoftware() OVERRIDE;
+ virtual void applySoftware() override;
- virtual bool affectsTransparentPixels() OVERRIDE;
+ virtual bool affectsTransparentPixels() override;
void getValues(unsigned char rValues[256], unsigned char gValues[256], unsigned char bValues[256], unsigned char aValues[256]);
« no previous file with comments | « Source/platform/graphics/filters/FEColorMatrix.h ('k') | Source/platform/graphics/filters/FEComposite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698