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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/events/TransitionEvent.h ('k') | Source/core/events/WheelEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/UIEvent.h
diff --git a/Source/core/events/UIEvent.h b/Source/core/events/UIEvent.h
index e5f8907154e3949d85a4eeffb8c8dccca785acde..f5b156a5aec3a0c19d09d8d29294040e9a780366 100644
--- a/Source/core/events/UIEvent.h
+++ b/Source/core/events/UIEvent.h
@@ -51,7 +51,7 @@ public:
{
return adoptRefWillBeNoop(new UIEvent(type, initializer));
}
- virtual ~UIEvent();
+ ~UIEvent() override;
void initUIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
@@ -59,8 +59,8 @@ public:
int detail() const { return m_detail; }
InputDevice* sourceDevice() const { return m_sourceDevice.get(); }
- virtual const AtomicString& interfaceName() const override;
- virtual bool isUIEvent() const override final;
+ const AtomicString& interfaceName() const override;
+ bool isUIEvent() const final;
virtual int keyCode() const;
virtual int charCode() const;
« no previous file with comments | « Source/core/events/TransitionEvent.h ('k') | Source/core/events/WheelEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698