| Index: Source/core/html/canvas/WebGLContextObject.h
|
| diff --git a/Source/core/html/canvas/WebGLContextObject.h b/Source/core/html/canvas/WebGLContextObject.h
|
| index 1e4d29657542e6edad0615290fffeb2f6e308a98..769cd29c3883ce8120a0e1a569be16441f80b469 100644
|
| --- a/Source/core/html/canvas/WebGLContextObject.h
|
| +++ b/Source/core/html/canvas/WebGLContextObject.h
|
| @@ -41,7 +41,7 @@ public:
|
|
|
| WebGLRenderingContext* context() const { return m_context; }
|
|
|
| - virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContext* context) const
|
| + virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContext* context) const OVERRIDE FINAL
|
| {
|
| return context == m_context;
|
| }
|
| @@ -51,12 +51,12 @@ public:
|
| protected:
|
| WebGLContextObject(WebGLRenderingContext*);
|
|
|
| - virtual bool hasGroupOrContext() const
|
| + virtual bool hasGroupOrContext() const OVERRIDE FINAL
|
| {
|
| return m_context;
|
| }
|
|
|
| - virtual GraphicsContext3D* getAGraphicsContext3D() const;
|
| + virtual GraphicsContext3D* getAGraphicsContext3D() const OVERRIDE FINAL;
|
|
|
| private:
|
| WebGLRenderingContext* m_context;
|
|
|