Chromium Code Reviews| Index: Source/core/events/MouseRelatedEvent.h |
| diff --git a/Source/core/events/MouseRelatedEvent.h b/Source/core/events/MouseRelatedEvent.h |
| index 6b4ae753e08e1ab1ac95a98cb7c79c0bf42bcb29..49fd5fcd0adf801e02a335acbbfbb81b92129ee3 100644 |
| --- a/Source/core/events/MouseRelatedEvent.h |
| +++ b/Source/core/events/MouseRelatedEvent.h |
| @@ -43,16 +43,16 @@ namespace blink { |
| int movementX() const { return m_movementDelta.x(); } |
| int movementY() const { return m_movementDelta.y(); } |
| const LayoutPoint& clientLocation() const { return m_clientLocation; } |
| - virtual int layerX() override final; |
|
philipj_slow
2015/07/01 14:17:46
Good riddance pointless virtual!
|
| - virtual int layerY() override final; |
| + int layerX(); |
| + int layerY(); |
| int offsetX(); |
| int offsetY(); |
| // FIXME: rename isSimulated to fromKeyboard() and replace m_isSimulated with a new value |
| // in PlatformMouseEvent::SyntheticEventType. isSimulated() is only true for synthetic |
| // mouse events that derive from keyboard input, which do not have a position. |
| bool isSimulated() const { return m_isSimulated; } |
| - virtual int pageX() const override final; |
| - virtual int pageY() const override final; |
| + int pageX() const; |
| + int pageY() const; |
| int x() const; |
| int y() const; |