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

Unified Diff: Source/core/html/HTMLAnchorElement.h

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/URLUtils.idl ('k') | Source/core/html/HTMLAnchorElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAnchorElement.h
diff --git a/Source/core/html/HTMLAnchorElement.h b/Source/core/html/HTMLAnchorElement.h
index 701470bdfc6258f1c8b9a5a2c33cdbe002481d9e..ced425616417bd9f1315000f4661af478ab0760e 100644
--- a/Source/core/html/HTMLAnchorElement.h
+++ b/Source/core/html/HTMLAnchorElement.h
@@ -56,6 +56,7 @@ enum {
};
class HTMLAnchorElement : public HTMLElement, public DOMURLUtils {
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLAnchorElement);
public:
static PassRefPtrWillBeRawPtr<HTMLAnchorElement> create(Document&);
@@ -83,6 +84,7 @@ public:
void invalidateCachedVisitedLinkHash() { m_cachedVisitedLinkHash = 0; }
void sendPings(const KURL& destinationURL) const;
+ virtual void trace(Visitor*) OVERRIDE;
protected:
HTMLAnchorElement(const QualifiedName&, Document&);
« no previous file with comments | « Source/core/dom/URLUtils.idl ('k') | Source/core/html/HTMLAnchorElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698