Chromium Code Reviews| Index: Source/core/html/HTMLElement.h |
| diff --git a/Source/core/html/HTMLElement.h b/Source/core/html/HTMLElement.h |
| index 3f93fc20fec50d2e6077f4ea3da19c473ea303dc..6e85b4eb1e48ba3917a3f7551dd57fa5482de0b6 100644 |
| --- a/Source/core/html/HTMLElement.h |
| +++ b/Source/core/html/HTMLElement.h |
| @@ -92,6 +92,8 @@ public: |
| virtual bool isLabelable() const { return false; } |
| + virtual void defaultEventHandler(Event*) OVERRIDE; |
| + |
| protected: |
| HTMLElement(const QualifiedName& tagName, Document*, ConstructionType); |
| @@ -127,6 +129,8 @@ private: |
| TranslateAttributeMode translateAttributeMode() const; |
| AtomicString eventNameForAttributeName(const QualifiedName& attrName) const; |
| + |
| + virtual void handleKeypressEvent(KeyboardEvent*); |
|
esprehn
2013/06/14 08:01:24
This shouldn't be virtual.
|
| }; |
| inline HTMLElement* toHTMLElement(Node* node) |