2013-07-25 03:01:49 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
|
|
/* 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef MediaElementAudioSourceNode_h_
|
|
|
|
#define MediaElementAudioSourceNode_h_
|
|
|
|
|
|
|
|
#include "MediaStreamAudioSourceNode.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-04-28 06:42:00 +00:00
|
|
|
class MediaElementAudioSourceNode final : public MediaStreamAudioSourceNode
|
2013-07-25 03:01:49 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
MediaElementAudioSourceNode(AudioContext* aContext,
|
|
|
|
DOMMediaStream* aStream);
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2014-04-13 18:08:10 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual const char* NodeType() const override
|
2014-04-13 18:08:10 +00:00
|
|
|
{
|
|
|
|
return "MediaElementAudioSourceNode";
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual size_t SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const override
|
2014-04-13 18:08:10 +00:00
|
|
|
{
|
|
|
|
return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
2013-07-25 03:01:49 +00:00
|
|
|
};
|
|
|
|
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-07-25 03:01:49 +00:00
|
|
|
|
|
|
|
#endif
|