| Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.h b/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| index b52ddc4dc5c089292da7c1a84053a602c47244e0..d51ee7ddb7b17bb952cdf099562ab13fabe7c8b3 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| @@ -87,6 +87,9 @@ public:
|
|
|
| void sendPings(const KURL& destinationURL) const;
|
|
|
| + DECLARE_VIRTUAL_TRACE();
|
| + DECLARE_VIRTUAL_TRACE_WRAPPERS();
|
| +
|
| protected:
|
| HTMLAnchorElement(const QualifiedName&, Document&);
|
|
|
| @@ -95,6 +98,8 @@ protected:
|
| bool matchesEnabledPseudoClass() const override;
|
|
|
| private:
|
| + class NavigationHintSender;
|
| +
|
| bool shouldHaveFocusAppearance() const final;
|
| void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) override;
|
| void dispatchBlurEvent(Element* newFocusedElement, WebFocusType, InputDeviceCapabilities* sourceCapabilities) override;
|
| @@ -111,10 +116,12 @@ private:
|
| bool isInteractiveContent() const final;
|
| InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| void handleClick(Event*);
|
| + NavigationHintSender* navigationHintSender();
|
|
|
| uint32_t m_linkRelations;
|
| mutable LinkHash m_cachedVisitedLinkHash;
|
| bool m_wasFocusedByMouse;
|
| + Member<NavigationHintSender> m_navigationHintsender;
|
| };
|
|
|
| inline LinkHash HTMLAnchorElement::visitedLinkHash() const
|
|
|