2013-03-27 01:32:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
|
|
/* 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 AUDIOSTREAMTRACK_H_
|
|
|
|
#define AUDIOSTREAMTRACK_H_
|
|
|
|
|
|
|
|
#include "MediaStreamTrack.h"
|
2013-09-05 20:25:17 +00:00
|
|
|
#include "DOMMediaStream.h"
|
2013-03-27 01:32:51 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class AudioStreamTrack : public MediaStreamTrack {
|
|
|
|
public:
|
|
|
|
AudioStreamTrack(DOMMediaStream* aStream, TrackID aTrackID)
|
|
|
|
: MediaStreamTrack(aStream, aTrackID) {}
|
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
2013-03-27 01:32:51 +00:00
|
|
|
|
2015-01-03 02:08:06 +00:00
|
|
|
virtual AudioStreamTrack* AsAudioStreamTrack() MOZ_OVERRIDE { return this; }
|
2013-03-27 01:32:51 +00:00
|
|
|
|
|
|
|
// WebIDL
|
2015-01-03 02:08:06 +00:00
|
|
|
virtual void GetKind(nsAString& aKind) MOZ_OVERRIDE { aKind.AssignLiteral("audio"); }
|
2013-03-27 01:32:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* AUDIOSTREAMTRACK_H_ */
|