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

Unified Diff: Source/core/inspector/PromiseTracker.cpp

Issue 571043002: Oilpan: handle delayed removal of PromiseTracker promises. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PromiseTracker.cpp
diff --git a/Source/core/inspector/PromiseTracker.cpp b/Source/core/inspector/PromiseTracker.cpp
index b7d9a1f7feffcdd7a703a5ac282b90665f7a4160..546eeb938b0537777667cf3322f19dce54ee0071 100644
--- a/Source/core/inspector/PromiseTracker.cpp
+++ b/Source/core/inspector/PromiseTracker.cpp
@@ -27,7 +27,13 @@ public:
int promiseHash() const { return m_promiseHash; }
ScopedPersistent<v8::Object>& promise() { return m_promise; }
-#if !ENABLE(OILPAN)
+#if ENABLE(OILPAN)
+ void dispose()
+ {
+ m_promise.clear();
+ m_parentPromise.clear();
+ }
+#else
WeakPtr<PromiseData> createWeakPtr()
{
return m_weakPtrFactory.createWeakPtr();
@@ -103,7 +109,16 @@ public:
WeakPtrWillBeRawPtr<PromiseTracker::PromiseData> promiseData = wrapper->m_data;
if (!promiseData || !wrapper->m_tracker)
return;
+
+#if ENABLE(OILPAN)
+ // Oilpan: let go of ScopedPersistent<>s right here (and not wait until the
+ // PromiseDataWrapper is GCed later.) The v8 weak callback handling expects
+ // to see the callback data upon return.
+ promiseData->dispose();
+#endif
PromiseTracker::PromiseDataMap& map = wrapper->m_tracker->promiseDataMap();
+ if (map.isEmpty())
+ return;
aandrey 2014/09/15 12:38:44 let's bail out if (map.find() == map.end()) instea
sof 2014/09/15 12:40:30 That would mask a bug -- all promise hashes should
aandrey 2014/09/15 12:46:04 The PromiseTracker could be disabled and re-enable
int promiseHash = promiseData->promiseHash();
PromiseTracker::PromiseDataVector* vector = &map.find(promiseHash)->value;
int index = indexOf(vector, promiseData->promise());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698