Index: Source/modules/indexeddb/IDBAny.cpp |
diff --git a/Source/modules/indexeddb/IDBAny.cpp b/Source/modules/indexeddb/IDBAny.cpp |
index c16175ec9d8171924a9969986d9fdc771efe22c4..8dda74ab7ff138e5b328d8ac3b9f12d97fc7bafc 100644 |
--- a/Source/modules/indexeddb/IDBAny.cpp |
+++ b/Source/modules/indexeddb/IDBAny.cpp |
@@ -146,7 +146,7 @@ int64_t IDBAny::integer() const |
return m_integer; |
} |
-IDBAny::IDBAny(PassRefPtr<DOMStringList> value) |
+IDBAny::IDBAny(PassRefPtrWillBeRawPtr<DOMStringList> value) |
: m_type(DOMStringListType) |
, m_domStringList(value) |
, m_integer(0) |
@@ -235,6 +235,7 @@ IDBAny::IDBAny(int64_t value) |
void IDBAny::trace(Visitor* visitor) |
{ |
+ visitor->trace(m_domStringList); |
visitor->trace(m_idbCursor); |
} |