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

Unified Diff: Source/core/html/canvas/WebGLTexture.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/WebGLTexture.h
diff --git a/Source/core/html/canvas/WebGLTexture.h b/Source/core/html/canvas/WebGLTexture.h
index d3bc7638731db345b912a1ce7ba36e5318cfb480..5c28bf028572ee02976de6e273cb644b59903540 100644
--- a/Source/core/html/canvas/WebGLTexture.h
+++ b/Source/core/html/canvas/WebGLTexture.h
@@ -33,7 +33,7 @@
namespace WebCore {
-class WebGLTexture : public WebGLSharedObject, public ScriptWrappable {
+class WebGLTexture FINAL : public WebGLSharedObject, public ScriptWrappable {
public:
enum TextureExtensionFlag {
NoTextureExtensionEnabled = 0,
@@ -78,7 +78,7 @@ public:
protected:
WebGLTexture(WebGLRenderingContext*);
- virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
+ virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject) OVERRIDE;
private:
class LevelInfo {
@@ -108,7 +108,7 @@ private:
GLenum type;
};
- virtual bool isTexture() const { return true; }
+ virtual bool isTexture() const OVERRIDE { return true; }
void update();

Powered by Google App Engine
This is Rietveld 408576698