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

Unified Diff: Source/modules/webgl/WebGLFramebuffer.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/WebGLDrawBuffers.h ('k') | Source/modules/webgl/WebGLLoseContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/WebGLFramebuffer.cpp
diff --git a/Source/modules/webgl/WebGLFramebuffer.cpp b/Source/modules/webgl/WebGLFramebuffer.cpp
index c16ca909715a9d0b5f480166b896975dcb4f9ce9..2f453e71dc334114105dfc76bb27dd375ecaf446 100644
--- a/Source/modules/webgl/WebGLFramebuffer.cpp
+++ b/Source/modules/webgl/WebGLFramebuffer.cpp
@@ -46,16 +46,16 @@ namespace {
explicit WebGLRenderbufferAttachment(WebGLRenderbuffer*);
WebGLRenderbufferAttachment() { }
- virtual GLsizei width() const override;
- virtual GLsizei height() const override;
- virtual GLenum format() const override;
- virtual GLenum type() const override;
- virtual WebGLSharedObject* object() const override;
- virtual bool isSharedObject(WebGLSharedObject*) const override;
- virtual bool valid() const override;
- virtual void onDetached(WebGraphicsContext3D*) override;
- virtual void attach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
- virtual void unattach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
+ GLsizei width() const override;
+ GLsizei height() const override;
+ GLenum format() const override;
+ GLenum type() const override;
+ WebGLSharedObject* object() const override;
+ bool isSharedObject(WebGLSharedObject*) const override;
+ bool valid() const override;
+ void onDetached(WebGraphicsContext3D*) override;
+ void attach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
+ void unattach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
RefPtrWillBeMember<WebGLRenderbuffer> m_renderbuffer;
};
@@ -154,16 +154,16 @@ namespace {
WebGLTextureAttachment(WebGLTexture*, GLenum target, GLint level);
WebGLTextureAttachment() { }
- virtual GLsizei width() const override;
- virtual GLsizei height() const override;
- virtual GLenum format() const override;
- virtual GLenum type() const override;
- virtual WebGLSharedObject* object() const override;
- virtual bool isSharedObject(WebGLSharedObject*) const override;
- virtual bool valid() const override;
- virtual void onDetached(WebGraphicsContext3D*) override;
- virtual void attach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
- virtual void unattach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
+ GLsizei width() const override;
+ GLsizei height() const override;
+ GLenum format() const override;
+ GLenum type() const override;
+ WebGLSharedObject* object() const override;
+ bool isSharedObject(WebGLSharedObject*) const override;
+ bool valid() const override;
+ void onDetached(WebGraphicsContext3D*) override;
+ void attach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
+ void unattach(WebGraphicsContext3D*, GLenum target, GLenum attachment) override;
RefPtrWillBeMember<WebGLTexture> m_texture;
GLenum m_target;
« no previous file with comments | « Source/modules/webgl/WebGLDrawBuffers.h ('k') | Source/modules/webgl/WebGLLoseContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698