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

Unified Diff: Source/core/events/ResourceProgressEvent.h

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (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/events/RelatedEvent.h ('k') | Source/core/events/SecurityPolicyViolationEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ResourceProgressEvent.h
diff --git a/Source/core/events/ResourceProgressEvent.h b/Source/core/events/ResourceProgressEvent.h
index fc5b20a73ebddf9e7b6250e00453993e9e3f6aea..cd80b4f67d1524ccaef8a11069cbc01524fa91a5 100644
--- a/Source/core/events/ResourceProgressEvent.h
+++ b/Source/core/events/ResourceProgressEvent.h
@@ -42,7 +42,7 @@ namespace blink {
// (and translate in the case of PNaCl) multiple binary files. It is not
// constructable by web content at all, and so does not provide the usual
// EventInit pattern for Event construction.
-class ResourceProgressEvent FINAL : public ProgressEvent {
+class ResourceProgressEvent final : public ProgressEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<ResourceProgressEvent> create()
@@ -56,9 +56,9 @@ public:
const String& url() const;
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
ResourceProgressEvent();
« no previous file with comments | « Source/core/events/RelatedEvent.h ('k') | Source/core/events/SecurityPolicyViolationEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698