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

Unified Diff: Source/core/html/canvas/EXTTextureFilterAnisotropic.h

Issue 131973002: Update HTML canvas classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
Index: Source/core/html/canvas/EXTTextureFilterAnisotropic.h
diff --git a/Source/core/html/canvas/EXTTextureFilterAnisotropic.h b/Source/core/html/canvas/EXTTextureFilterAnisotropic.h
index 727f00ee086805107dc16fd9ecfd67a2869970df..de1e77a38abfc41f1a890820157cee9b75ed4de1 100644
--- a/Source/core/html/canvas/EXTTextureFilterAnisotropic.h
+++ b/Source/core/html/canvas/EXTTextureFilterAnisotropic.h
@@ -32,14 +32,14 @@
namespace WebCore {
-class EXTTextureFilterAnisotropic : public WebGLExtension, public ScriptWrappable {
+class EXTTextureFilterAnisotropic FINAL : public WebGLExtension, public ScriptWrappable {
public:
static PassRefPtr<EXTTextureFilterAnisotropic> create(WebGLRenderingContext*);
static bool supported(WebGLRenderingContext*);
static const char* extensionName();
virtual ~EXTTextureFilterAnisotropic();
- virtual ExtensionName name() const;
+ virtual ExtensionName name() const OVERRIDE;
private:
EXTTextureFilterAnisotropic(WebGLRenderingContext*);

Powered by Google App Engine
This is Rietveld 408576698