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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp

Issue 2578053002: Worker: Stop running worker tests with BlinkGC::MainThreadHeapMode (Closed)
Patch Set: Created 4 years 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 | « third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
index 199c6861f754c25241390aa7197219f5cb486b52..ec6b5f4bd2118d62d47cf3e8839a96ba8f1a32ac 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
@@ -63,8 +63,7 @@ void AudioWorkletThread::collectAllGarbage() {
void AudioWorkletThread::ensureSharedBackingThread() {
DCHECK(isMainThread());
- WorkletThreadHolder<AudioWorkletThread>::ensureInstance(
- "AudioWorkletThread", BlinkGC::PerThreadHeapMode);
+ WorkletThreadHolder<AudioWorkletThread>::ensureInstance("AudioWorkletThread");
}
void AudioWorkletThread::clearSharedBackingThread() {
@@ -73,8 +72,7 @@ void AudioWorkletThread::clearSharedBackingThread() {
}
void AudioWorkletThread::createSharedBackingThreadForTest() {
- WorkletThreadHolder<AudioWorkletThread>::createForTest(
- "AudioWorkletThread", BlinkGC::PerThreadHeapMode);
+ WorkletThreadHolder<AudioWorkletThread>::createForTest("AudioWorkletThread");
}
WorkerOrWorkletGlobalScope* AudioWorkletThread::createWorkerGlobalScope(
« no previous file with comments | « third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698