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

Unified Diff: Source/core/html/canvas/WebGLContextGroup.h

Issue 40203004: Devirtualize WebGLContextGroup, WebGLGetInfo and WebGLUniformLocation's destructors (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Mark classes as FINAL Created 7 years, 2 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 | « no previous file | Source/core/html/canvas/WebGLGetInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLContextGroup.h
diff --git a/Source/core/html/canvas/WebGLContextGroup.h b/Source/core/html/canvas/WebGLContextGroup.h
index 3bd00563a7cad00e3b587419b3192df3c9ec6114..b1fece9111bb72c124a46172cb46356926fbf8c4 100644
--- a/Source/core/html/canvas/WebGLContextGroup.h
+++ b/Source/core/html/canvas/WebGLContextGroup.h
@@ -40,10 +40,10 @@ class WebGLRenderingContext;
typedef int ExceptionCode;
-class WebGLContextGroup : public RefCounted<WebGLContextGroup> {
+class WebGLContextGroup FINAL : public RefCounted<WebGLContextGroup> {
public:
static PassRefPtr<WebGLContextGroup> create();
- virtual ~WebGLContextGroup();
+ ~WebGLContextGroup();
void addContext(WebGLRenderingContext*);
void removeContext(WebGLRenderingContext*);
« no previous file with comments | « no previous file | Source/core/html/canvas/WebGLGetInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698