| 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 19 matching lines...) Expand all Loading... |
| 30 #include "wtf/PassRefPtr.h" | 30 #include "wtf/PassRefPtr.h" |
| 31 #include "wtf/RefPtr.h" | 31 #include "wtf/RefPtr.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class AudioBuffer; | 35 class AudioBuffer; |
| 36 | 36 |
| 37 class AudioProcessingEvent final : public Event { | 37 class AudioProcessingEvent final : public Event { |
| 38 DEFINE_WRAPPERTYPEINFO(); | 38 DEFINE_WRAPPERTYPEINFO(); |
| 39 public: | 39 public: |
| 40 static RawPtr<AudioProcessingEvent> create(); | 40 static AudioProcessingEvent* create(); |
| 41 static RawPtr<AudioProcessingEvent> create(AudioBuffer* inputBuffer, AudioBu
ffer* outputBuffer, double playbackTime); | 41 static AudioProcessingEvent* create(AudioBuffer* inputBuffer, AudioBuffer* o
utputBuffer, double playbackTime); |
| 42 | 42 |
| 43 ~AudioProcessingEvent() override; | 43 ~AudioProcessingEvent() override; |
| 44 | 44 |
| 45 AudioBuffer* inputBuffer() { return m_inputBuffer.get(); } | 45 AudioBuffer* inputBuffer() { return m_inputBuffer.get(); } |
| 46 AudioBuffer* outputBuffer() { return m_outputBuffer.get(); } | 46 AudioBuffer* outputBuffer() { return m_outputBuffer.get(); } |
| 47 double playbackTime() const { return m_playbackTime; } | 47 double playbackTime() const { return m_playbackTime; } |
| 48 | 48 |
| 49 const AtomicString& interfaceName() const override; | 49 const AtomicString& interfaceName() const override; |
| 50 | 50 |
| 51 DECLARE_VIRTUAL_TRACE(); | 51 DECLARE_VIRTUAL_TRACE(); |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 AudioProcessingEvent(); | 54 AudioProcessingEvent(); |
| 55 AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, do
uble playbackTime); | 55 AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, do
uble playbackTime); |
| 56 | 56 |
| 57 Member<AudioBuffer> m_inputBuffer; | 57 Member<AudioBuffer> m_inputBuffer; |
| 58 Member<AudioBuffer> m_outputBuffer; | 58 Member<AudioBuffer> m_outputBuffer; |
| 59 double m_playbackTime; | 59 double m_playbackTime; |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace blink | 62 } // namespace blink |
| 63 | 63 |
| 64 #endif // AudioProcessingEvent_h | 64 #endif // AudioProcessingEvent_h |
| OLD | NEW |