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

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

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: Created 6 years, 8 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
Index: Source/core/html/HTMLOutputElement.cpp
diff --git a/Source/core/html/HTMLOutputElement.cpp b/Source/core/html/HTMLOutputElement.cpp
index 4223ba4ac6fcc365fe7dbadde423901a4f514841..a36c27f14d890185a1ab3c8fa2ae55f032adc385 100644
--- a/Source/core/html/HTMLOutputElement.cpp
+++ b/Source/core/html/HTMLOutputElement.cpp
@@ -128,4 +128,11 @@ void HTMLOutputElement::setDefaultValue(const String& value)
setTextContent(value);
}
+
+void HTMLOutputElement::trace(Visitor* visitor)
+{
+ visitor->trace(m_tokens);
+ HTMLFormControlElement::trace(visitor);
+}
+
} // namespace

Powered by Google App Engine
This is Rietveld 408576698