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

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

Issue 298053002: Oilpan: add missing HTMLFormControlsCollection tracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 | « no previous file | Source/core/html/HTMLFormControlsCollection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormControlsCollection.h
diff --git a/Source/core/html/HTMLFormControlsCollection.h b/Source/core/html/HTMLFormControlsCollection.h
index cf5f070594e1861908f3e353e4c129e9d7f19321..a21a115c80c311a19823171e9c4cd210f33fbbde 100644
--- a/Source/core/html/HTMLFormControlsCollection.h
+++ b/Source/core/html/HTMLFormControlsCollection.h
@@ -46,6 +46,8 @@ public:
virtual Element* namedItem(const AtomicString& name) const OVERRIDE;
void namedGetter(const AtomicString& name, bool& radioNodeListEnabled, RefPtrWillBeRawPtr<RadioNodeList>&, bool& elementEnabled, RefPtrWillBeRawPtr<Element>&);
+ virtual void trace(Visitor*) OVERRIDE;
+
private:
explicit HTMLFormControlsCollection(ContainerNode&);
@@ -57,7 +59,7 @@ private:
virtual Element* virtualItemAfter(Element*) const OVERRIDE;
virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE;
- mutable Element* m_cachedElement;
+ mutable RawPtrWillBeMember<Element> m_cachedElement;
mutable unsigned m_cachedElementOffsetInArray;
};
« no previous file with comments | « no previous file | Source/core/html/HTMLFormControlsCollection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698