Bug 878875 - Import PannerNode tests from Blink. r=ehsan
[gecko.git] / content / media / webaudio / ChannelMergerNode.h
blobfb8e50a7d6fb6130786f9625e061d675547c67ed
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef ChannelMergerNode_h_
8 #define ChannelMergerNode_h_
10 #include "AudioNode.h"
12 namespace mozilla {
13 namespace dom {
15 class AudioContext;
17 class ChannelMergerNode : public AudioNode
19 public:
20 ChannelMergerNode(AudioContext* aContext,
21 uint16_t aInputCount);
23 NS_DECL_ISUPPORTS_INHERITED
25 virtual JSObject* WrapObject(JSContext* aCx,
26 JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
28 virtual uint16_t NumberOfInputs() const MOZ_OVERRIDE { return mInputCount; }
30 private:
31 const uint16_t mInputCount;
37 #endif