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

Unified Diff: Source/core/html/canvas/WebGLRenderbuffer.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
« no previous file with comments | « Source/core/html/canvas/WebGLProgram.h ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLRenderbuffer.h
diff --git a/Source/core/html/canvas/WebGLRenderbuffer.h b/Source/core/html/canvas/WebGLRenderbuffer.h
index d88c8e4fb550550e6d11d77ba04fe6099684d5e0..1285cdd1d1ca329afc4c2747c35b0f432da72731 100644
--- a/Source/core/html/canvas/WebGLRenderbuffer.h
+++ b/Source/core/html/canvas/WebGLRenderbuffer.h
@@ -32,7 +32,7 @@
namespace blink {
-class WebGLRenderbuffer FINAL : public WebGLSharedObject, public ScriptWrappable {
+class WebGLRenderbuffer final : public WebGLSharedObject, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~WebGLRenderbuffer();
@@ -61,15 +61,15 @@ public:
WebGLRenderbuffer* emulatedStencilBuffer() const { return m_emulatedStencilBuffer.get(); }
void deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
explicit WebGLRenderbuffer(WebGLRenderingContextBase*);
- virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE;
+ virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) override;
private:
- virtual bool isRenderbuffer() const OVERRIDE { return true; }
+ virtual bool isRenderbuffer() const override { return true; }
GLenum m_internalFormat;
GLsizei m_width, m_height;
« no previous file with comments | « Source/core/html/canvas/WebGLProgram.h ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698