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

Unified Diff: Source/core/html/canvas/WebGLTexture.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/WebGLTexture.h
diff --git a/Source/core/html/canvas/WebGLTexture.h b/Source/core/html/canvas/WebGLTexture.h
index b46be7e058fe2f33bfc5da9786d2e62db7ddc7f6..98b1a327c060db65e7df19acdb0b5818607be2b7 100644
--- a/Source/core/html/canvas/WebGLTexture.h
+++ b/Source/core/html/canvas/WebGLTexture.h
@@ -33,7 +33,7 @@
namespace blink {
-class WebGLTexture FINAL : public WebGLSharedObject, public ScriptWrappable {
+class WebGLTexture final : public WebGLSharedObject, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
enum TextureExtensionFlag {
@@ -79,7 +79,7 @@ public:
protected:
explicit WebGLTexture(WebGLRenderingContextBase*);
- virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE;
+ virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) override;
private:
class LevelInfo {
@@ -109,7 +109,7 @@ private:
GLenum type;
};
- virtual bool isTexture() const OVERRIDE { return true; }
+ virtual bool isTexture() const override { return true; }
void update();
« no previous file with comments | « Source/core/html/canvas/WebGLSharedWebGraphicsContext3D.h ('k') | Source/core/html/canvas/WebGLUniformLocation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698