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

Unified Diff: Source/modules/webgl/WebGLRenderingContext.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « Source/modules/webgl/WebGLProgram.h ('k') | Source/modules/webgl/WebGLRenderingContextBase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/WebGLRenderingContext.h
diff --git a/Source/modules/webgl/WebGLRenderingContext.h b/Source/modules/webgl/WebGLRenderingContext.h
index b36ff09a3003af0129408d2fd9a4b19a9418b5a3..ed26f5aebedfe6665995faa1f3c5ffb2f43ac552 100644
--- a/Source/modules/webgl/WebGLRenderingContext.h
+++ b/Source/modules/webgl/WebGLRenderingContext.h
@@ -47,12 +47,12 @@ public:
void onError(HTMLCanvasElement*, const String& error) override;
};
- virtual ~WebGLRenderingContext();
+ ~WebGLRenderingContext() override;
CanvasRenderingContext::ContextType contextType() const override { return CanvasRenderingContext::ContextWebgl; }
- virtual unsigned version() const override { return 1; }
- virtual String contextName() const override { return "WebGLRenderingContext"; }
- virtual void registerContextExtensions() override;
+ unsigned version() const override { return 1; }
+ String contextName() const override { return "WebGLRenderingContext"; }
+ void registerContextExtensions() override;
EAGERLY_FINALIZE();
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/webgl/WebGLProgram.h ('k') | Source/modules/webgl/WebGLRenderingContextBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698