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

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

Issue 1006253002: Oilpan: have LifetimeNotifier<T> track its observers weakly. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fill in GC_PLUGIN_IGNORE() 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
Index: Source/core/dom/ActiveDOMObject.cpp
diff --git a/Source/core/dom/ActiveDOMObject.cpp b/Source/core/dom/ActiveDOMObject.cpp
index 2d6157f388e6cda2c835ae6e9d7c790ed373d0de..67ee15f22286d9310312a05107714a20e43ec24d 100644
--- a/Source/core/dom/ActiveDOMObject.cpp
+++ b/Source/core/dom/ActiveDOMObject.cpp
@@ -52,7 +52,9 @@ ActiveDOMObject::~ActiveDOMObject()
return;
ASSERT(m_suspendIfNeededCalled);
+#if !ENABLE(OILPAN)
sof 2015/03/16 15:44:34 Is this assert worth carrying over to Oilpan? I'm
haraken 2015/03/16 23:44:22 Agreed.
ASSERT(executionContext()->isContextThread());
+#endif
}
void ActiveDOMObject::suspendIfNeeded()

Powered by Google App Engine
This is Rietveld 408576698