| 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 12 matching lines...) Expand all Loading... |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef AudioProcessingEvent_h | 25 #ifndef AudioProcessingEvent_h |
| 26 #define AudioProcessingEvent_h | 26 #define AudioProcessingEvent_h |
| 27 | 27 |
| 28 #include "modules/EventModules.h" | 28 #include "modules/EventModules.h" |
| 29 #include "modules/webaudio/AudioBuffer.h" | 29 #include "modules/webaudio/AudioBuffer.h" |
| 30 #include "wtf/PassRefPtr.h" | 30 #include "wtf/PassRefPtr.h" |
| 31 #include "wtf/RefPtr.h" | 31 #include "wtf/RefPtr.h" |
| 32 | 32 |
| 33 #if ENABLE(WEB_AUDIO) | |
| 34 | |
| 35 namespace blink { | 33 namespace blink { |
| 36 | 34 |
| 37 class AudioBuffer; | 35 class AudioBuffer; |
| 38 | 36 |
| 39 class AudioProcessingEvent final : public Event { | 37 class AudioProcessingEvent final : public Event { |
| 40 DEFINE_WRAPPERTYPEINFO(); | 38 DEFINE_WRAPPERTYPEINFO(); |
| 41 public: | 39 public: |
| 42 static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(); | 40 static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(); |
| 43 static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(AudioBuffer* inpu
tBuffer, AudioBuffer* outputBuffer, double playbackTime); | 41 static PassRefPtrWillBeRawPtr<AudioProcessingEvent> create(AudioBuffer* inpu
tBuffer, AudioBuffer* outputBuffer, double playbackTime); |
| 44 | 42 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 56 AudioProcessingEvent(); | 54 AudioProcessingEvent(); |
| 57 AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, do
uble playbackTime); | 55 AudioProcessingEvent(AudioBuffer* inputBuffer, AudioBuffer* outputBuffer, do
uble playbackTime); |
| 58 | 56 |
| 59 PersistentWillBeMember<AudioBuffer> m_inputBuffer; | 57 PersistentWillBeMember<AudioBuffer> m_inputBuffer; |
| 60 PersistentWillBeMember<AudioBuffer> m_outputBuffer; | 58 PersistentWillBeMember<AudioBuffer> m_outputBuffer; |
| 61 double m_playbackTime; | 59 double m_playbackTime; |
| 62 }; | 60 }; |
| 63 | 61 |
| 64 } // namespace blink | 62 } // namespace blink |
| 65 | 63 |
| 66 #endif // ENABLE(WEB_AUDIO) | |
| 67 | |
| 68 #endif // AudioProcessingEvent_h | 64 #endif // AudioProcessingEvent_h |
| OLD | NEW |