| 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 4c8a0ce65e3cee511304f8fdad29a24421835581..aa382d91250e1843ef5f7be175cedd796b72fe20 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.h
|
| @@ -88,8 +88,6 @@ class CORE_EXPORT HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
|
|
|
| void sendPings(const KURL& destinationURL) const;
|
|
|
| - DECLARE_VIRTUAL_TRACE();
|
| -
|
| protected:
|
| HTMLAnchorElement(const QualifiedName&, Document&);
|
|
|
| @@ -98,8 +96,6 @@ class CORE_EXPORT HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
|
| bool matchesEnabledPseudoClass() const override;
|
|
|
| private:
|
| - class NavigationHintSender;
|
| -
|
| void attributeChanged(const AttributeModificationParams&) override;
|
| bool shouldHaveFocusAppearance() const final;
|
| void dispatchFocusEvent(Element* oldFocusedElement,
|
| @@ -121,12 +117,10 @@ class CORE_EXPORT HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
|
| bool isInteractiveContent() const final;
|
| InsertionNotificationRequest insertedInto(ContainerNode*) override;
|
| void handleClick(Event*);
|
| - NavigationHintSender* ensureNavigationHintSender();
|
|
|
| uint32_t m_linkRelations;
|
| mutable LinkHash m_cachedVisitedLinkHash;
|
| bool m_wasFocusedByMouse;
|
| - Member<NavigationHintSender> m_navigationHintSender;
|
| };
|
|
|
| inline LinkHash HTMLAnchorElement::visitedLinkHash() const {
|
|
|