Index: Source/core/html/HTMLAnchorElement.h |
diff --git a/Source/core/html/HTMLAnchorElement.h b/Source/core/html/HTMLAnchorElement.h |
index 701470bdfc6258f1c8b9a5a2c33cdbe002481d9e..35f6e501fea40b7d516501f39069d30363cd24f8 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 bool wasFocusedByMouse() const OVERRIDE FINAL; |
+ virtual void setWasFocusedByMouse(bool) 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 |