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

Unified Diff: Source/core/html/canvas/WebGLSharedObject.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/WebGLSharedObject.h
diff --git a/Source/core/html/canvas/WebGLSharedObject.h b/Source/core/html/canvas/WebGLSharedObject.h
index 2a45d82ecccceea990f35d186bcfe7804048f2b0..eec08d974b9d000031c9e166e4b3cc4b60475754 100644
--- a/Source/core/html/canvas/WebGLSharedObject.h
+++ b/Source/core/html/canvas/WebGLSharedObject.h
@@ -47,7 +47,7 @@ public:
virtual bool isShader() const { return false; }
virtual bool isTexture() const { return false; }
- virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContextBase*) const OVERRIDE FINAL
+ virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContextBase*) const override final
{
return contextGroup == m_contextGroup;
}
@@ -57,12 +57,12 @@ public:
protected:
explicit WebGLSharedObject(WebGLRenderingContextBase*);
- virtual bool hasGroupOrContext() const OVERRIDE FINAL
+ virtual bool hasGroupOrContext() const override final
{
return m_contextGroup;
}
- virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const OVERRIDE FINAL;
+ virtual blink::WebGraphicsContext3D* getAWebGraphicsContext3D() const override final;
private:
WebGLContextGroup* m_contextGroup;
« no previous file with comments | « Source/core/html/canvas/WebGLShaderPrecisionFormat.h ('k') | Source/core/html/canvas/WebGLSharedWebGraphicsContext3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698