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

Unified Diff: Source/core/dom/DOMSettableTokenList.cpp

Issue 1035533003: Oilpan: fix build++ after r192490. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: provide null trace() for non-oilpan Created 5 years, 9 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/DOMSettableTokenList.h ('k') | Source/core/html/HTMLIFrameElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMSettableTokenList.cpp
diff --git a/Source/core/dom/DOMSettableTokenList.cpp b/Source/core/dom/DOMSettableTokenList.cpp
index 01498be9e60a56048ded3ca4daead0bc22f449c1..dfdb4f821ef97a1e398baef3bb5a5f988c279a6e 100644
--- a/Source/core/dom/DOMSettableTokenList.cpp
+++ b/Source/core/dom/DOMSettableTokenList.cpp
@@ -40,6 +40,12 @@ DOMSettableTokenList::~DOMSettableTokenList()
{
}
+DEFINE_TRACE(DOMSettableTokenList)
+{
+ visitor->trace(m_observer);
+ DOMTokenList::trace(visitor);
+}
+
const AtomicString DOMSettableTokenList::item(unsigned index) const
{
if (index >= length())
« no previous file with comments | « Source/core/dom/DOMSettableTokenList.h ('k') | Source/core/html/HTMLIFrameElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698