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

Unified Diff: Source/core/html/canvas/WebGLVertexArrayObjectOES.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/WebGLVertexArrayObjectOES.h
diff --git a/Source/core/html/canvas/WebGLVertexArrayObjectOES.h b/Source/core/html/canvas/WebGLVertexArrayObjectOES.h
index 7fbbc9a57adf1c3895b1bec826889df74034ce3c..094a77b8101c50fb8f489c8a30d0261ff68032bc 100644
--- a/Source/core/html/canvas/WebGLVertexArrayObjectOES.h
+++ b/Source/core/html/canvas/WebGLVertexArrayObjectOES.h
@@ -33,7 +33,7 @@
namespace WebCore {
-class WebGLVertexArrayObjectOES : public WebGLContextObject, public ScriptWrappable {
+class WebGLVertexArrayObjectOES FINAL : public WebGLContextObject, public ScriptWrappable {
public:
enum VaoType {
VaoTypeDefault,
@@ -87,9 +87,7 @@ public:
private:
WebGLVertexArrayObjectOES(WebGLRenderingContext*, VaoType);
- virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);
-
- virtual bool isVertexArray() const { return true; }
eseidel 2014/01/10 19:11:22 Dead?
Inactive 2014/01/10 19:18:26 Yes, it does not override anything and it is never
+ virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject) OVERRIDE;
VaoType m_type;
bool m_hasEverBeenBound;
« Source/core/html/canvas/WebGLFramebuffer.h ('K') | « Source/core/html/canvas/WebGLTexture.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698