Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: Source/core/html/HTMLAnchorElement.h

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Handle dependency between URLUtils interfaces and URLSearchParams Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Simon Hausmann <hausmann@kde.org> 4 * (C) 2000 Simon Hausmann <hausmann@kde.org>
5 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 static EventType eventType(Event*); 114 static EventType eventType(Event*);
115 bool treatLinkAsLiveForEventType(EventType) const; 115 bool treatLinkAsLiveForEventType(EventType) const;
116 116
117 Element* rootEditableElementForSelectionOnMouseDown() const; 117 Element* rootEditableElementForSelectionOnMouseDown() const;
118 void setRootEditableElementForSelectionOnMouseDown(Element*); 118 void setRootEditableElementForSelectionOnMouseDown(Element*);
119 void clearRootEditableElementForSelectionOnMouseDown(); 119 void clearRootEditableElementForSelectionOnMouseDown();
120 120
121 class PrefetchEventHandler; 121 class PrefetchEventHandler;
122 PrefetchEventHandler* prefetchEventHandler(); 122 PrefetchEventHandler* prefetchEventHandler();
123 123
124 virtual void refURLUtils() OVERRIDE FINAL { ref(); }
125 virtual void derefURLUtils() OVERRIDE FINAL { deref(); }
126
127 virtual DOMURLUtils::ImplementedBy implementedBy() const OVERRIDE FINAL { re turn DOMURLUtils::Anchor; }
128
124 bool m_hasRootEditableElementForSelectionOnMouseDown : 1; 129 bool m_hasRootEditableElementForSelectionOnMouseDown : 1;
125 bool m_wasShiftKeyDownOnMouseDown : 1; 130 bool m_wasShiftKeyDownOnMouseDown : 1;
126 uint32_t m_linkRelations : 30; 131 uint32_t m_linkRelations : 30;
127 OwnPtr<PrefetchEventHandler> m_prefetchEventHandler; 132 OwnPtr<PrefetchEventHandler> m_prefetchEventHandler;
128 mutable LinkHash m_cachedVisitedLinkHash; 133 mutable LinkHash m_cachedVisitedLinkHash;
129 }; 134 };
130 135
131 inline LinkHash HTMLAnchorElement::visitedLinkHash() const 136 inline LinkHash HTMLAnchorElement::visitedLinkHash() const
132 { 137 {
133 if (!m_cachedVisitedLinkHash) 138 if (!m_cachedVisitedLinkHash)
134 m_cachedVisitedLinkHash = WebCore::visitedLinkHash(document().baseURL(), fastGetAttribute(HTMLNames::hrefAttr)); 139 m_cachedVisitedLinkHash = WebCore::visitedLinkHash(document().baseURL(), fastGetAttribute(HTMLNames::hrefAttr));
135 return m_cachedVisitedLinkHash; 140 return m_cachedVisitedLinkHash;
136 } 141 }
137 142
138 // Functions shared with the other anchor elements (i.e., SVG). 143 // Functions shared with the other anchor elements (i.e., SVG).
139 144
140 bool isEnterKeyKeydownEvent(Event*); 145 bool isEnterKeyKeydownEvent(Event*);
141 bool isLinkClick(Event*); 146 bool isLinkClick(Event*);
142 147
143 DEFINE_NODE_TYPE_CASTS(HTMLAnchorElement, hasTagName(HTMLNames::aTag)); 148 DEFINE_NODE_TYPE_CASTS(HTMLAnchorElement, hasTagName(HTMLNames::aTag));
144 149
145 } // namespace WebCore 150 } // namespace WebCore
146 151
147 #endif // HTMLAnchorElement_h 152 #endif // HTMLAnchorElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698