| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "wtf/Vector.h" | 46 #include "wtf/Vector.h" |
| 47 #include "wtf/build_config.h" | 47 #include "wtf/build_config.h" |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class AnalyserNode; | 51 class AnalyserNode; |
| 52 class AudioBuffer; | 52 class AudioBuffer; |
| 53 class AudioBufferCallback; | 53 class AudioBufferCallback; |
| 54 class AudioBufferSourceNode; | 54 class AudioBufferSourceNode; |
| 55 class AudioListener; | 55 class AudioListener; |
| 56 class AudioSummingJunction; | |
| 57 class BaseAudioContextTest; | 56 class BaseAudioContextTest; |
| 58 class BiquadFilterNode; | 57 class BiquadFilterNode; |
| 59 class ChannelMergerNode; | 58 class ChannelMergerNode; |
| 60 class ChannelSplitterNode; | 59 class ChannelSplitterNode; |
| 61 class ConstantSourceNode; | 60 class ConstantSourceNode; |
| 62 class ConvolverNode; | 61 class ConvolverNode; |
| 63 class DelayNode; | 62 class DelayNode; |
| 64 class Dictionary; | |
| 65 class Document; | 63 class Document; |
| 66 class DynamicsCompressorNode; | 64 class DynamicsCompressorNode; |
| 67 class ExceptionState; | 65 class ExceptionState; |
| 68 class GainNode; | 66 class GainNode; |
| 69 class HTMLMediaElement; | 67 class HTMLMediaElement; |
| 70 class IIRFilterNode; | 68 class IIRFilterNode; |
| 71 class MediaElementAudioSourceNode; | 69 class MediaElementAudioSourceNode; |
| 70 class MediaStream; |
| 72 class MediaStreamAudioDestinationNode; | 71 class MediaStreamAudioDestinationNode; |
| 73 class MediaStreamAudioSourceNode; | 72 class MediaStreamAudioSourceNode; |
| 74 class OscillatorNode; | 73 class OscillatorNode; |
| 75 class PannerNode; | 74 class PannerNode; |
| 76 class PeriodicWave; | 75 class PeriodicWave; |
| 77 class PeriodicWaveConstraints; | 76 class PeriodicWaveConstraints; |
| 78 class ScriptProcessorNode; | 77 class ScriptProcessorNode; |
| 79 class ScriptPromiseResolver; | 78 class ScriptPromiseResolver; |
| 80 class ScriptState; | 79 class ScriptState; |
| 81 class SecurityOrigin; | 80 class SecurityOrigin; |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 // This is considering 32 is large enough for multiple channels audio. | 447 // This is considering 32 is large enough for multiple channels audio. |
| 449 // It is somewhat arbitrary and could be increased if necessary. | 448 // It is somewhat arbitrary and could be increased if necessary. |
| 450 enum { MaxNumberOfChannels = 32 }; | 449 enum { MaxNumberOfChannels = 32 }; |
| 451 | 450 |
| 452 Optional<AutoplayStatus> m_autoplayStatus; | 451 Optional<AutoplayStatus> m_autoplayStatus; |
| 453 }; | 452 }; |
| 454 | 453 |
| 455 } // namespace blink | 454 } // namespace blink |
| 456 | 455 |
| 457 #endif // BaseAudioContext_h | 456 #endif // BaseAudioContext_h |
| OLD | NEW |