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

Unified Diff: Source/core/events/ClipboardEvent.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/BeforeUnloadEvent.h ('k') | Source/core/events/CompositionEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ClipboardEvent.h
diff --git a/Source/core/events/ClipboardEvent.h b/Source/core/events/ClipboardEvent.h
index 074de15ef92f32e7d4871da09a30900d8c03c368..28cfa3757dd2d53bd89fb8b21d4f3d8393af6e87 100644
--- a/Source/core/events/ClipboardEvent.h
+++ b/Source/core/events/ClipboardEvent.h
@@ -30,7 +30,7 @@ namespace blink {
class DataTransfer;
-class ClipboardEvent FINAL : public Event {
+class ClipboardEvent final : public Event {
public:
virtual ~ClipboardEvent();
@@ -41,14 +41,14 @@ public:
DataTransfer* clipboardData() const { return m_clipboardData.get(); }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
ClipboardEvent();
ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData);
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual bool isClipboardEvent() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
+ virtual bool isClipboardEvent() const override;
RefPtrWillBeMember<DataTransfer> m_clipboardData;
};
« no previous file with comments | « Source/core/events/BeforeUnloadEvent.h ('k') | Source/core/events/CompositionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698