2008-07-09 01:22:20 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2010-04-01 20:03:07 -07:00
|
|
|
#if !defined(nsHTMLAudioElement_h__)
|
|
|
|
#define nsHTMLAudioElement_h__
|
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
#include "nsIDOMHTMLAudioElement.h"
|
2009-05-18 22:18:41 -07:00
|
|
|
#include "nsIJSNativeInitializer.h"
|
2008-07-09 01:22:20 -07:00
|
|
|
#include "nsHTMLMediaElement.h"
|
|
|
|
|
|
|
|
typedef PRUint16 nsMediaNetworkState;
|
|
|
|
typedef PRUint16 nsMediaReadyState;
|
|
|
|
|
|
|
|
class nsHTMLAudioElement : public nsHTMLMediaElement,
|
2009-05-18 22:18:41 -07:00
|
|
|
public nsIDOMHTMLAudioElement,
|
|
|
|
public nsIJSNativeInitializer
|
2008-07-09 01:22:20 -07:00
|
|
|
{
|
|
|
|
public:
|
2011-09-18 02:22:18 -07:00
|
|
|
nsHTMLAudioElement(already_AddRefed<nsINodeInfo> aNodeInfo);
|
2008-07-09 01:22:20 -07:00
|
|
|
virtual ~nsHTMLAudioElement();
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMNode
|
|
|
|
NS_FORWARD_NSIDOMNODE(nsHTMLMediaElement::)
|
|
|
|
|
|
|
|
// nsIDOMElement
|
|
|
|
NS_FORWARD_NSIDOMELEMENT(nsHTMLMediaElement::)
|
|
|
|
|
|
|
|
// nsIDOMHTMLElement
|
|
|
|
NS_FORWARD_NSIDOMHTMLELEMENT(nsHTMLMediaElement::)
|
|
|
|
|
|
|
|
// nsIDOMHTMLMediaElement
|
|
|
|
NS_FORWARD_NSIDOMHTMLMEDIAELEMENT(nsHTMLMediaElement::)
|
|
|
|
|
|
|
|
// nsIDOMHTMLAudioElement
|
|
|
|
NS_DECL_NSIDOMHTMLAUDIOELEMENT
|
|
|
|
|
2009-05-18 22:18:41 -07:00
|
|
|
// nsIJSNativeInitializer
|
|
|
|
NS_IMETHOD Initialize(nsISupports* aOwner, JSContext* aContext,
|
|
|
|
JSObject* aObj, PRUint32 argc, jsval* argv);
|
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
virtual nsresult Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const;
|
2010-07-28 21:58:07 -07:00
|
|
|
virtual nsresult SetAcceptHeader(nsIHttpChannel* aChannel);
|
2010-07-23 02:49:57 -07:00
|
|
|
|
|
|
|
virtual nsXPCClassInfo* GetClassInfo();
|
2012-04-25 06:47:30 -07:00
|
|
|
|
|
|
|
virtual nsIDOMNode* AsDOMNode() { return this; }
|
2012-06-04 16:49:57 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void GetItemValueText(nsAString& text);
|
|
|
|
virtual void SetItemValueText(const nsAString& text);
|
2008-07-09 01:22:20 -07:00
|
|
|
};
|
2010-04-01 20:03:07 -07:00
|
|
|
|
|
|
|
#endif
|