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

Unified Diff: third_party/WebKit/Source/platform/heap/ThreadState.cpp

Issue 1914233006: Implement offscreenCanvas.getContext('webgl') on a worker thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kbr@'s comments, and limit maxGLActiveContexts=4 per worker thread Created 4 years, 7 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: third_party/WebKit/Source/platform/heap/ThreadState.cpp
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
index e1294ec308fb758f3ef5f6e26e3ba3df415c4253..cbf3b3c2f1ba769d4f323380e8480ed79e2a0a0e 100644
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
@@ -241,6 +241,7 @@ void ThreadState::runTerminationGC()
int currentCount = getPersistentRegion()->numberOfPersistents();
ASSERT(currentCount >= 0);
while (currentCount != oldCount) {
+ releaseStaticPersistentNodes();
pfeldman 2016/05/06 21:20:40 What is this about? Could you send it to the heap
xidachen 2016/05/06 21:41:54 sof@: Thank you for your CL that clears static per
sof 2016/05/07 05:17:45 It is still needed, a destructor might still creat
ThreadHeap::collectGarbageForTerminatingThread(this);
oldCount = currentCount;
currentCount = getPersistentRegion()->numberOfPersistents();

Powered by Google App Engine
This is Rietveld 408576698