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

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

Issue 2008903002: Drop unique audio thread ID requirement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.h ('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/DeferredTaskHandler.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp b/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
index d294fe8fa80585e76e0331a63cb657d395b0f72c..e0edeaee15d341a663aa0bcd0cce91abb1ebf9df 100644
--- a/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
@@ -279,18 +279,9 @@ void DeferredTaskHandler::clearHandlersToBeDeleted()
m_deletableOrphanHandlers.clear();
}
-void DeferredTaskHandler::clearAudioThread()
-{
- releaseStore(&m_audioThread, 0);
-}
-
void DeferredTaskHandler::setAudioThreadToCurrentThread()
{
ASSERT(!isMainThread());
- if (m_audioThread) {
- ASSERT(m_audioThread == currentThread());
- return;
- }
ThreadIdentifier thread = currentThread();
releaseStore(&m_audioThread, thread);
}
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698