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

Unified Diff: Source/core/events/WheelEvent.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/UIEvent.h ('k') | Source/core/fileapi/Blob.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/WheelEvent.h
diff --git a/Source/core/events/WheelEvent.h b/Source/core/events/WheelEvent.h
index f8a8c1c4c139d950a07878ec5f66ae6cf1b0c102..f15fbe31d0fd88eb51d322448e01eeb9789852d3 100644
--- a/Source/core/events/WheelEvent.h
+++ b/Source/core/events/WheelEvent.h
@@ -78,9 +78,9 @@ public:
bool hasPreciseScrollingDeltas() const { return m_hasPreciseScrollingDeltas; }
RailsMode railsMode() const { return m_railsMode; }
- virtual const AtomicString& interfaceName() const override;
- virtual bool isMouseEvent() const override;
- virtual bool isWheelEvent() const override;
+ const AtomicString& interfaceName() const override;
+ bool isMouseEvent() const override;
+ bool isWheelEvent() const override;
DECLARE_VIRTUAL_TRACE();
@@ -109,7 +109,7 @@ public:
private:
WheelEventDispatchMediator(const PlatformWheelEvent&, PassRefPtrWillBeRawPtr<AbstractView>);
WheelEvent& event() const;
- virtual bool dispatchEvent(EventDispatcher&) const override;
+ bool dispatchEvent(EventDispatcher&) const override;
};
} // namespace blink
« no previous file with comments | « Source/core/events/UIEvent.h ('k') | Source/core/fileapi/Blob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698