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

Unified Diff: Source/core/html/canvas/WebGLContextEvent.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/WebGLContextAttributes.h ('k') | Source/core/html/canvas/WebGLContextGroup.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLContextEvent.h
diff --git a/Source/core/html/canvas/WebGLContextEvent.h b/Source/core/html/canvas/WebGLContextEvent.h
index c4e088d3a51e7ce2a90e0157f7480c81a9b97a17..e8028a2a6c1c0a0c08406bc413f414ed59a69bb2 100644
--- a/Source/core/html/canvas/WebGLContextEvent.h
+++ b/Source/core/html/canvas/WebGLContextEvent.h
@@ -36,7 +36,7 @@ struct WebGLContextEventInit : public EventInit {
String statusMessage;
};
-class WebGLContextEvent FINAL : public Event {
+class WebGLContextEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -56,9 +56,9 @@ public:
const String& statusMessage() const { return m_statusMessage; }
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
WebGLContextEvent();
« no previous file with comments | « Source/core/html/canvas/WebGLContextAttributes.h ('k') | Source/core/html/canvas/WebGLContextGroup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698