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

Unified Diff: Source/core/storage/StorageEvent.cpp

Issue 170283019: Change various helper classes to transition types to get CSSValue entirely onto the gc heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase and revert member to persistent in StorageEvent Created 6 years, 10 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/storage/StorageEvent.cpp
diff --git a/Source/core/storage/StorageEvent.cpp b/Source/core/storage/StorageEvent.cpp
index ddcd7d831a57d4680d0c136d0a2ef48bfb4d4263..398877c585754183940d8b43540652a40da41b42 100644
--- a/Source/core/storage/StorageEvent.cpp
+++ b/Source/core/storage/StorageEvent.cpp
@@ -102,6 +102,10 @@ const AtomicString& StorageEvent::interfaceName() const
void StorageEvent::trace(Visitor* visitor)
{
+ // FIXME: oilpan: this code is not called as of now since Event is not on
+ // the oilpan heap anymore. We are keeping this code to avoid having to
+ // rewrite it once Event is moved back onto the oilpan heap.
+ visitor->trace(m_storageArea);
Event::trace(visitor);
}
« Source/core/css/MediaQueryEvaluator.h ('K') | « Source/core/html/parser/HTMLResourcePreloader.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698