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

Unified Diff: Source/modules/webgl/WebGLRenderingContextBase.cpp

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/WebGLRenderingContextBase.h ('k') | Source/modules/webgl/WebGLSharedObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/WebGLRenderingContextBase.cpp
diff --git a/Source/modules/webgl/WebGLRenderingContextBase.cpp b/Source/modules/webgl/WebGLRenderingContextBase.cpp
index 175e7844ce30e3c3705b908bffd965bc34c41162..71629a567bc59607a6f1778ec59718f641f2e1d8 100644
--- a/Source/modules/webgl/WebGLRenderingContextBase.cpp
+++ b/Source/modules/webgl/WebGLRenderingContextBase.cpp
@@ -508,7 +508,7 @@ public:
return adoptPtrWillBeNoop(new WebGLRenderingContextLostCallback(context));
}
- virtual ~WebGLRenderingContextLostCallback() { }
+ ~WebGLRenderingContextLostCallback() override { }
virtual void onContextLost() { m_context->forceLostContext(WebGLRenderingContextBase::RealLostContext, WebGLRenderingContextBase::Auto); }
@@ -532,7 +532,7 @@ public:
return adoptPtrWillBeNoop(new WebGLRenderingContextErrorMessageCallback(context));
}
- virtual ~WebGLRenderingContextErrorMessageCallback() { }
+ ~WebGLRenderingContextErrorMessageCallback() override { }
virtual void onErrorMessage(const WebString& message, WGC3Dint)
{
« no previous file with comments | « Source/modules/webgl/WebGLRenderingContextBase.h ('k') | Source/modules/webgl/WebGLSharedObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698