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

Unified Diff: Source/core/events/GestureEvent.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/GenericEventQueue.h ('k') | Source/core/events/HashChangeEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/GestureEvent.h
diff --git a/Source/core/events/GestureEvent.h b/Source/core/events/GestureEvent.h
index 767623358c309110c65c79a6c6c2b853284a8ce0..c42eeee6632fa7e444933d23d0beb1ed7f0b3c75 100644
--- a/Source/core/events/GestureEvent.h
+++ b/Source/core/events/GestureEvent.h
@@ -35,13 +35,13 @@ namespace blink {
class CORE_EXPORT GestureEvent final : public MouseRelatedEvent {
public:
- virtual ~GestureEvent() { }
+ ~GestureEvent() override { }
static PassRefPtrWillBeRawPtr<GestureEvent> create(PassRefPtrWillBeRawPtr<AbstractView>, const PlatformGestureEvent&);
- virtual bool isGestureEvent() const override;
+ bool isGestureEvent() const override;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
float deltaX() const { return m_deltaX; }
float deltaY() const { return m_deltaY; }
@@ -68,7 +68,7 @@ private:
GestureEvent& event() const;
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
DEFINE_EVENT_TYPE_CASTS(GestureEvent);
« no previous file with comments | « Source/core/events/GenericEventQueue.h ('k') | Source/core/events/HashChangeEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698