зеркало из https://github.com/mozilla/gecko-dev.git
47 строки
1.3 KiB
C++
47 строки
1.3 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef AudioWorkletImpl_h
|
|
#define AudioWorkletImpl_h
|
|
|
|
#include "mozilla/dom/WorkletImpl.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class AudioNodeStream;
|
|
|
|
namespace dom {
|
|
class AudioContext;
|
|
}
|
|
|
|
class AudioWorkletImpl final : public WorkletImpl {
|
|
public:
|
|
// Methods for parent thread only:
|
|
|
|
static already_AddRefed<dom::Worklet> CreateWorklet(
|
|
dom::AudioContext* aContext, ErrorResult& aRv);
|
|
|
|
JSObject* WrapWorklet(JSContext* aCx, dom::Worklet* aWorklet,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
nsresult SendControlMessage(already_AddRefed<nsIRunnable> aRunnable) override;
|
|
|
|
protected:
|
|
// Execution thread only.
|
|
already_AddRefed<dom::WorkletGlobalScope> ConstructGlobalScope() override;
|
|
|
|
private:
|
|
AudioWorkletImpl(nsPIDOMWindowInner* aWindow, nsIPrincipal* aPrincipal,
|
|
AudioNodeStream* aDestinationStream);
|
|
~AudioWorkletImpl();
|
|
|
|
const RefPtr<AudioNodeStream> mDestinationStream;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // AudioWorkletImpl_h
|