| Index: Source/core/html/canvas/WebGLContextObject.h | 
| diff --git a/Source/core/html/canvas/WebGLContextObject.h b/Source/core/html/canvas/WebGLContextObject.h | 
| index 7391504021889e8c5dc6f7894da8c319e77265aa..db20c61f7787d42d1e3359476e18f8833b4be639 100644 | 
| --- a/Source/core/html/canvas/WebGLContextObject.h | 
| +++ b/Source/core/html/canvas/WebGLContextObject.h | 
| @@ -45,24 +45,24 @@ public: | 
|  | 
| WebGLRenderingContextBase* context() const { return m_context; } | 
|  | 
| -    virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContextBase* context) const OVERRIDE FINAL | 
| +    virtual bool validate(const WebGLContextGroup*, const WebGLRenderingContextBase* context) const override final | 
| { | 
| return context == m_context; | 
| } | 
|  | 
| void detachContext(); | 
|  | 
| -    virtual void trace(Visitor*) OVERRIDE; | 
| +    virtual void trace(Visitor*) override; | 
|  | 
| protected: | 
| explicit WebGLContextObject(WebGLRenderingContextBase*); | 
|  | 
| -    virtual bool hasGroupOrContext() const OVERRIDE FINAL | 
| +    virtual bool hasGroupOrContext() const override final | 
| { | 
| return m_context; | 
| } | 
|  | 
| -    virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const OVERRIDE FINAL; | 
| +    virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const override final; | 
|  | 
| private: | 
| RawPtrWillBeMember<WebGLRenderingContextBase> m_context; | 
|  |