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

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

Issue 258143002: Oilpan: move DOM string collection objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase + final adjustments 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 | « Source/core/html/HTMLLinkElement.cpp ('k') | Source/core/html/HTMLOutputElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOutputElement.h
diff --git a/Source/core/html/HTMLOutputElement.h b/Source/core/html/HTMLOutputElement.h
index 84132a0074fc1ffdb8892ecc906110c9bcd1a36d..d554341032ae84fc074a36188fc4050f301db3b6 100644
--- a/Source/core/html/HTMLOutputElement.h
+++ b/Source/core/html/HTMLOutputElement.h
@@ -51,6 +51,8 @@ public:
virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
+ virtual void trace(Visitor*) OVERRIDE;
+
private:
HTMLOutputElement(Document&, HTMLFormElement*);
@@ -64,7 +66,7 @@ private:
bool m_isDefaultValueMode;
String m_defaultValue;
- RefPtr<DOMSettableTokenList> m_tokens;
+ RefPtrWillBeMember<DOMSettableTokenList> m_tokens;
};
} // namespace
« no previous file with comments | « Source/core/html/HTMLLinkElement.cpp ('k') | Source/core/html/HTMLOutputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698