| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |