2013-05-21 09:14:00 -07: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 mozilla_dom_HTMLTrackElement_h
|
|
|
|
#define mozilla_dom_HTMLTrackElement_h
|
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-05-21 09:14:00 -07:00
|
|
|
#include "mozilla/dom/HTMLMediaElement.h"
|
|
|
|
#include "mozilla/dom/TextTrack.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
#include "nsGenericHTMLElement.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsIDOMHTMLElement.h"
|
|
|
|
#include "nsIDOMEventTarget.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
|
|
|
2014-08-18 07:44:50 -07:00
|
|
|
class nsIContent;
|
|
|
|
class nsIDocument;
|
|
|
|
|
2013-05-21 09:14:00 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-09-19 08:26:00 -07:00
|
|
|
class WebVTTListener;
|
2013-06-10 08:30:00 -07:00
|
|
|
|
2013-05-21 09:14:00 -07:00
|
|
|
class HTMLTrackElement MOZ_FINAL : public nsGenericHTMLElement
|
|
|
|
{
|
|
|
|
public:
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit HTMLTrackElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLTrackElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
|
|
|
|
// HTMLTrackElement WebIDL
|
2013-07-04 11:16:05 -07:00
|
|
|
void GetKind(DOMString& aKind) const;
|
|
|
|
void SetKind(const nsAString& aKind, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::kind, aKind, aError);
|
|
|
|
}
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
void GetSrc(DOMString& aSrc) const
|
|
|
|
{
|
|
|
|
GetHTMLURIAttr(nsGkAtoms::src, aSrc);
|
|
|
|
}
|
|
|
|
void SetSrc(const nsAString& aSrc, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::src, aSrc, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetSrclang(DOMString& aSrclang) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::srclang, aSrclang);
|
|
|
|
}
|
2013-05-23 19:57:00 -07:00
|
|
|
void GetSrclang(nsString& aSrclang) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::srclang, aSrclang);
|
|
|
|
}
|
2013-05-21 09:14:00 -07:00
|
|
|
void SetSrclang(const nsAString& aSrclang, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::srclang, aSrclang, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetLabel(DOMString& aLabel) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::label, aLabel);
|
|
|
|
}
|
2013-05-23 19:57:00 -07:00
|
|
|
void GetLabel(nsString& aLabel) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::label, aLabel);
|
|
|
|
}
|
2013-05-21 09:14:00 -07:00
|
|
|
void SetLabel(const nsAString& aLabel, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::label, aLabel, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Default() const
|
|
|
|
{
|
|
|
|
return GetBoolAttr(nsGkAtoms::_default);
|
|
|
|
}
|
|
|
|
void SetDefault(bool aDefault, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLBoolAttr(nsGkAtoms::_default, aDefault, aError);
|
|
|
|
}
|
|
|
|
|
2013-10-24 21:14:36 -07:00
|
|
|
uint16_t ReadyState() const;
|
2014-03-14 09:13:41 -07:00
|
|
|
void SetReadyState(uint16_t aReadyState);
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-04-07 10:58:38 -07:00
|
|
|
TextTrack* GetTrack();
|
2013-05-21 09:14:00 -07:00
|
|
|
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const MOZ_OVERRIDE;
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
// For Track, ItemValue reflects the src attribute
|
2013-05-29 13:43:41 -07:00
|
|
|
virtual void GetItemValueText(nsAString& aText) MOZ_OVERRIDE
|
2013-05-21 09:14:00 -07:00
|
|
|
{
|
|
|
|
DOMString value;
|
|
|
|
GetSrc(value);
|
|
|
|
aText = value;
|
|
|
|
}
|
2013-05-29 13:43:41 -07:00
|
|
|
virtual void SetItemValueText(const nsAString& aText) MOZ_OVERRIDE
|
2013-05-21 09:14:00 -07:00
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
SetSrc(aText, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override ParseAttribute() to convert kind strings to enum values.
|
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2013-05-29 13:43:41 -07:00
|
|
|
nsAttrValue& aResult) MOZ_OVERRIDE;
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
// Override BindToTree() so that we can trigger a load when we become
|
|
|
|
// the child of a media element.
|
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument,
|
|
|
|
nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
|
|
|
bool aCompileEventHandlers) MOZ_OVERRIDE;
|
|
|
|
virtual void UnbindFromTree(bool aDeep, bool aNullParent) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
// Check enabling preference.
|
|
|
|
static bool IsWebVTTEnabled();
|
|
|
|
|
2014-03-14 09:13:41 -07:00
|
|
|
void DispatchTrackRunnable(const nsString& aEventName);
|
|
|
|
void DispatchTrustedEvent(const nsAString& aName);
|
2014-06-18 13:10:24 -07:00
|
|
|
|
|
|
|
void DropChannel();
|
|
|
|
|
2013-05-21 09:14:00 -07:00
|
|
|
protected:
|
2014-07-08 14:23:16 -07:00
|
|
|
virtual ~HTMLTrackElement();
|
|
|
|
|
2014-04-08 15:27:17 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx) MOZ_OVERRIDE;
|
2013-06-10 08:30:00 -07:00
|
|
|
void OnChannelRedirect(nsIChannel* aChannel, nsIChannel* aNewChannel,
|
|
|
|
uint32_t aFlags);
|
2013-09-19 08:26:00 -07:00
|
|
|
// Open a new channel to the HTMLTrackElement's src attribute and call
|
|
|
|
// mListener's LoadResource().
|
2013-06-10 08:30:00 -07:00
|
|
|
void LoadResource();
|
|
|
|
|
|
|
|
friend class TextTrackCue;
|
2013-09-19 08:26:00 -07:00
|
|
|
friend class WebVTTListener;
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
nsRefPtr<TextTrack> mTrack;
|
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
|
|
|
nsRefPtr<HTMLMediaElement> mMediaParent;
|
2013-09-19 08:26:00 -07:00
|
|
|
nsRefPtr<WebVTTListener> mListener;
|
2013-05-21 09:14:00 -07:00
|
|
|
|
|
|
|
void CreateTextTrack();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLTrackElement_h
|