Searched defs:AudioContext (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioContext.cpp29 #include "modules/webaudio/AudioContext.h"
81 bool AudioContext::isSampleRateRangeGood(float sampleRate)
90 unsigned AudioContext::s_hardwareContextCount = 0;
92 PassRefPtrWillBeRawPtr<AudioContext> AudioContext::create(Document& document, ExceptionState& exceptionState)
102 RefPtrWillBeRawPtr<AudioContext> audioContext(adoptRefWillBeThreadSafeRefCountedGarbageCollected(new AudioContext(&document)));
108 AudioContext::AudioContext(Document* document) function in class:WebCore::AudioContext
129 AudioContext function in class:WebCore::AudioContext
[all...]
H A DAudioContext.h74 // AudioContext is the cornerstone of the web audio API and all AudioNodes are created from it.
77 class AudioContext : public ThreadSafeRefCountedWillBeThreadSafeRefCountedGarbageCollected<AudioContext>, public ActiveDOMObject, public ScriptWrappable, public EventTargetWithInlineData { class in namespace:WebCore
78 DEFINE_EVENT_TARGET_REFCOUNTING(ThreadSafeRefCountedWillBeThreadSafeRefCountedGarbageCollected<AudioContext>);
79 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AudioContext);
81 // Create an AudioContext for rendering to the audio hardware.
82 static PassRefPtrWillBeRawPtr<AudioContext> create(Document&, ExceptionState&);
84 virtual ~AudioContext();
148 // AudioContext can pull node(s) at the end of each render quantum even when they are not connected to any downstream nodes.
190 AutoLocker(AudioContext* contex
[all...]

Completed in 143 milliseconds