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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp

Issue 1818233003: Merge WTF::initializeMainThread into WTF::initialize (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 10 matching lines...) Expand all
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25 #include "modules/webaudio/DeferredTaskHandler.h" 25 #include "modules/webaudio/DeferredTaskHandler.h"
26 #include "modules/webaudio/AudioNode.h" 26 #include "modules/webaudio/AudioNode.h"
27 #include "modules/webaudio/AudioNodeOutput.h" 27 #include "modules/webaudio/AudioNodeOutput.h"
28 #include "modules/webaudio/OfflineAudioContext.h" 28 #include "modules/webaudio/OfflineAudioContext.h"
29 #include "platform/ThreadSafeFunctional.h" 29 #include "platform/ThreadSafeFunctional.h"
30 #include "public/platform/Platform.h" 30 #include "public/platform/Platform.h"
31 #include "wtf/MainThread.h"
32 31
33 namespace blink { 32 namespace blink {
34 33
35 void DeferredTaskHandler::lock() 34 void DeferredTaskHandler::lock()
36 { 35 {
37 // Don't allow regular lock in real-time audio thread. 36 // Don't allow regular lock in real-time audio thread.
38 ASSERT(!isAudioThread()); 37 ASSERT(!isAudioThread());
39 m_contextGraphMutex.lock(); 38 m_contextGraphMutex.lock();
40 } 39 }
41 40
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 void DeferredTaskHandler::clearHandlersToBeDeleted() 274 void DeferredTaskHandler::clearHandlersToBeDeleted()
276 { 275 {
277 ASSERT(isMainThread()); 276 ASSERT(isMainThread());
278 AutoLocker locker(*this); 277 AutoLocker locker(*this);
279 m_renderingOrphanHandlers.clear(); 278 m_renderingOrphanHandlers.clear();
280 m_deletableOrphanHandlers.clear(); 279 m_deletableOrphanHandlers.clear();
281 } 280 }
282 281
283 } // namespace blink 282 } // namespace blink
284 283
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698