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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
Index: Source/core/html/canvas/WebGLShader.h
diff --git a/Source/core/html/canvas/WebGLShader.h b/Source/core/html/canvas/WebGLShader.h
index 9d295552a20626acc99a9f4b53f23f767cd61dde..52705a2c718b7c2bc59c8eca87f7356197887436 100644
--- a/Source/core/html/canvas/WebGLShader.h
+++ b/Source/core/html/canvas/WebGLShader.h
@@ -33,7 +33,7 @@
namespace blink {
-class WebGLShader FINAL : public WebGLSharedObject, public ScriptWrappable {
+class WebGLShader final : public WebGLSharedObject, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~WebGLShader();
@@ -48,9 +48,9 @@ public:
private:
WebGLShader(WebGLRenderingContextBase*, GLenum);
- virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE;
+ virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) override;
- virtual bool isShader() const OVERRIDE { return true; }
+ virtual bool isShader() const override { return true; }
GLenum m_type;
String m_source;
« no previous file with comments | « Source/core/html/canvas/WebGLRenderingContextBase.cpp ('k') | Source/core/html/canvas/WebGLShaderPrecisionFormat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698