| Index: Source/core/html/HTMLAnchorElement.h
|
| diff --git a/Source/core/html/HTMLAnchorElement.h b/Source/core/html/HTMLAnchorElement.h
|
| index 701470bdfc6258f1c8b9a5a2c33cdbe002481d9e..efbdb362c0c4a9dc2de99c3912e1083a2517c52a 100644
|
| --- a/Source/core/html/HTMLAnchorElement.h
|
| +++ b/Source/core/html/HTMLAnchorElement.h
|
| @@ -92,6 +92,9 @@ protected:
|
| virtual bool supportsFocus() const OVERRIDE;
|
|
|
| private:
|
| + virtual bool shouldHaveFocusAppearance() const OVERRIDE FINAL;
|
| + virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE;
|
| + virtual void willCallDefaultEventHandler(const Event&) OVERRIDE FINAL;
|
| virtual bool isMouseFocusable() const OVERRIDE;
|
| virtual bool isKeyboardFocusable() const OVERRIDE;
|
| virtual void defaultEventHandler(Event*) OVERRIDE FINAL;
|
| @@ -108,6 +111,7 @@ private:
|
|
|
| uint32_t m_linkRelations;
|
| mutable LinkHash m_cachedVisitedLinkHash;
|
| + bool m_wasFocusedByMouse;
|
| };
|
|
|
| inline LinkHash HTMLAnchorElement::visitedLinkHash() const
|
|
|