| Index: Source/core/html/canvas/WebGLLoseContext.h
|
| diff --git a/Source/core/html/canvas/WebGLLoseContext.h b/Source/core/html/canvas/WebGLLoseContext.h
|
| index 23140d626327722134227bd6f842fab69058cc86..e2a1141685191951328de500b85a5d6f1524cdf0 100644
|
| --- a/Source/core/html/canvas/WebGLLoseContext.h
|
| +++ b/Source/core/html/canvas/WebGLLoseContext.h
|
| @@ -34,15 +34,15 @@ namespace WebCore {
|
|
|
| class WebGLRenderingContext;
|
|
|
| -class WebGLLoseContext : public WebGLExtension, public ScriptWrappable {
|
| +class WebGLLoseContext FINAL : public WebGLExtension, public ScriptWrappable {
|
| public:
|
| static PassRefPtr<WebGLLoseContext> create(WebGLRenderingContext*);
|
| static bool supported(WebGLRenderingContext*);
|
| static const char* extensionName();
|
|
|
| virtual ~WebGLLoseContext();
|
| - virtual ExtensionName name() const;
|
| - virtual void lose(bool);
|
| + virtual ExtensionName name() const OVERRIDE;
|
| + virtual void lose(bool) OVERRIDE;
|
|
|
| void loseContext();
|
| void restoreContext();
|
|
|