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

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

Issue 2017923002: Unbreak release component builds on Windows after https://codereview.chromium.org/2014343002/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hmm2 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 5f01c043539a2f0eec049fbe47e42ae3e85df64d..b476a302f44bb07f6c46d68c0efb241a56abfec8 100644
--- a/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
@@ -195,14 +195,14 @@ void DeferredTaskHandler::removeChangedChannelCountMode(AudioHandler* node)
void DeferredTaskHandler::addChangedChannelInterpretation(AudioHandler* node)
{
- DCHECK(isGraphOwner());
- DCHECK(isMainThread());
+ ASSERT(isGraphOwner());
+ ASSERT(isMainThread());
m_deferredChannelInterpretationChange.add(node);
}
void DeferredTaskHandler::removeChangedChannelInterpretation(AudioHandler* node)
{
- DCHECK(isGraphOwner());
+ ASSERT(isGraphOwner());
m_deferredChannelInterpretationChange.remove(node);
}
@@ -218,7 +218,7 @@ void DeferredTaskHandler::updateChangedChannelCountMode()
void DeferredTaskHandler::updateChangedChannelInterpretation()
{
- DCHECK(isGraphOwner());
+ ASSERT(isGraphOwner());
for (AudioHandler* node : m_deferredChannelInterpretationChange)
node->updateChannelInterpretation();
« 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