| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 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 |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND | 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND |
| 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 16 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE | 16 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE |
| 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 20 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 20 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH | 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
| 23 * DAMAGE. | 23 * DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef MediaElementAudioSourceNode_h | 26 #ifndef MediaElementAudioSourceNode_h |
| 27 #define MediaElementAudioSourceNode_h | 27 #define MediaElementAudioSourceNode_h |
| 28 | 28 |
| 29 #include "modules/webaudio/AudioSourceNode.h" | 29 #include "modules/webaudio/AudioNode.h" |
| 30 #include "platform/audio/AudioSourceProviderClient.h" | 30 #include "platform/audio/AudioSourceProviderClient.h" |
| 31 #include "platform/audio/MultiChannelResampler.h" | 31 #include "platform/audio/MultiChannelResampler.h" |
| 32 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
| 33 #include "wtf/ThreadingPrimitives.h" | 33 #include "wtf/ThreadingPrimitives.h" |
| 34 #include <memory> | 34 #include <memory> |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class BaseAudioContext; | 38 class BaseAudioContext; |
| 39 class HTMLMediaElement; | 39 class HTMLMediaElement; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 // Indicates if we need to print a CORS message if the current source has | 95 // Indicates if we need to print a CORS message if the current source has |
| 96 // changed and we have no access to it. Must be protected by |m_processLock|. | 96 // changed and we have no access to it. Must be protected by |m_processLock|. |
| 97 bool m_maybePrintCORSMessage; | 97 bool m_maybePrintCORSMessage; |
| 98 | 98 |
| 99 // The value of mediaElement()->currentSrc().string() in the ctor and | 99 // The value of mediaElement()->currentSrc().string() in the ctor and |
| 100 // onCurrentSrcChanged(). Protected by |m_processLock|. | 100 // onCurrentSrcChanged(). Protected by |m_processLock|. |
| 101 String m_currentSrcString; | 101 String m_currentSrcString; |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 class MediaElementAudioSourceNode final : public AudioSourceNode, | 104 class MediaElementAudioSourceNode final : public AudioNode, |
| 105 public AudioSourceProviderClient { | 105 public AudioSourceProviderClient { |
| 106 DEFINE_WRAPPERTYPEINFO(); | 106 DEFINE_WRAPPERTYPEINFO(); |
| 107 USING_GARBAGE_COLLECTED_MIXIN(MediaElementAudioSourceNode); | 107 USING_GARBAGE_COLLECTED_MIXIN(MediaElementAudioSourceNode); |
| 108 | 108 |
| 109 public: | 109 public: |
| 110 static MediaElementAudioSourceNode* create(BaseAudioContext&, | 110 static MediaElementAudioSourceNode* create(BaseAudioContext&, |
| 111 HTMLMediaElement&, | 111 HTMLMediaElement&, |
| 112 ExceptionState&); | 112 ExceptionState&); |
| 113 static MediaElementAudioSourceNode* create( | 113 static MediaElementAudioSourceNode* create( |
| 114 BaseAudioContext*, | 114 BaseAudioContext*, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 126 void lock() override; | 126 void lock() override; |
| 127 void unlock() override; | 127 void unlock() override; |
| 128 | 128 |
| 129 private: | 129 private: |
| 130 MediaElementAudioSourceNode(BaseAudioContext&, HTMLMediaElement&); | 130 MediaElementAudioSourceNode(BaseAudioContext&, HTMLMediaElement&); |
| 131 }; | 131 }; |
| 132 | 132 |
| 133 } // namespace blink | 133 } // namespace blink |
| 134 | 134 |
| 135 #endif // MediaElementAudioSourceNode_h | 135 #endif // MediaElementAudioSourceNode_h |
| OLD | NEW |