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

Unified Diff: Source/modules/indexeddb/IDBAny.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/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);
}

Powered by Google App Engine
This is Rietveld 408576698