| 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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #ifndef AudioNodeOutput_h | 25 #ifndef AudioNodeOutput_h |
| 26 #define AudioNodeOutput_h | 26 #define AudioNodeOutput_h |
| 27 | 27 |
| 28 #include "modules/webaudio/AudioNode.h" | 28 #include "modules/webaudio/AudioNode.h" |
| 29 #include "modules/webaudio/AudioParam.h" | 29 #include "modules/webaudio/AudioParam.h" |
| 30 #include "platform/audio/AudioBus.h" | 30 #include "platform/audio/AudioBus.h" |
| 31 #include "wtf/HashSet.h" | 31 #include "wtf/HashSet.h" |
| 32 #include "wtf/RefPtr.h" | 32 #include "wtf/RefPtr.h" |
| 33 | 33 |
| 34 #if ENABLE(WEB_AUDIO) | |
| 35 | |
| 36 namespace blink { | 34 namespace blink { |
| 37 | 35 |
| 38 class AudioNodeInput; | 36 class AudioNodeInput; |
| 39 | 37 |
| 40 // AudioNodeOutput represents a single output for an AudioNode. | 38 // AudioNodeOutput represents a single output for an AudioNode. |
| 41 // It may be connected to one or more AudioNodeInputs. | 39 // It may be connected to one or more AudioNodeInputs. |
| 42 class AudioNodeOutput final { | 40 class AudioNodeOutput final { |
| 43 USING_FAST_MALLOC(AudioNodeOutput); | 41 USING_FAST_MALLOC(AudioNodeOutput); |
| 44 public: | 42 public: |
| 45 // It's OK to pass 0 for numberOfChannels in which case | 43 // It's OK to pass 0 for numberOfChannels in which case |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 unsigned m_renderingFanOutCount; | 158 unsigned m_renderingFanOutCount; |
| 161 unsigned m_renderingParamFanOutCount; | 159 unsigned m_renderingParamFanOutCount; |
| 162 | 160 |
| 163 // This collection of raw pointers is safe because they are retained by | 161 // This collection of raw pointers is safe because they are retained by |
| 164 // AudioParam objects retained by m_connectedParams of the owner AudioNode. | 162 // AudioParam objects retained by m_connectedParams of the owner AudioNode. |
| 165 HashSet<AudioParamHandler*> m_params; | 163 HashSet<AudioParamHandler*> m_params; |
| 166 }; | 164 }; |
| 167 | 165 |
| 168 } // namespace blink | 166 } // namespace blink |
| 169 | 167 |
| 170 #endif // ENABLE(WEB_AUDIO) | |
| 171 | |
| 172 #endif // AudioNodeOutput_h | 168 #endif // AudioNodeOutput_h |
| OLD | NEW |