2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-05-21 20:14:00 +04: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_HTMLTrackElement_h
|
|
|
|
#define mozilla_dom_HTMLTrackElement_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-05-21 20:14:00 +04: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 18:44:50 +04:00
|
|
|
class nsIContent;
|
|
|
|
class nsIDocument;
|
|
|
|
|
2013-05-21 20:14:00 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-09-19 19:26:00 +04:00
|
|
|
class WebVTTListener;
|
2013-06-10 19:30:00 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class HTMLTrackElement final : public nsGenericHTMLElement
|
2013-05-21 20:14:00 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit HTMLTrackElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(HTMLTrackElement,
|
|
|
|
nsGenericHTMLElement)
|
|
|
|
|
|
|
|
// HTMLTrackElement WebIDL
|
2013-07-04 22:16:05 +04:00
|
|
|
void GetKind(DOMString& aKind) const;
|
|
|
|
void SetKind(const nsAString& aKind, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::kind, aKind, aError);
|
|
|
|
}
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
void GetSrc(DOMString& aSrc) const
|
|
|
|
{
|
|
|
|
GetHTMLURIAttr(nsGkAtoms::src, aSrc);
|
|
|
|
}
|
2016-07-21 11:49:24 +03:00
|
|
|
|
|
|
|
void SetSrc(const nsAString& aSrc, ErrorResult& aError);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
void GetSrclang(DOMString& aSrclang) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::srclang, aSrclang);
|
|
|
|
}
|
2016-06-30 08:36:31 +03:00
|
|
|
void GetSrclang(nsAString& aSrclang) const
|
2013-05-24 06:57:00 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::srclang, aSrclang);
|
|
|
|
}
|
2013-05-21 20:14:00 +04:00
|
|
|
void SetSrclang(const nsAString& aSrclang, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::srclang, aSrclang, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetLabel(DOMString& aLabel) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::label, aLabel);
|
|
|
|
}
|
2016-06-30 08:36:31 +03:00
|
|
|
void GetLabel(nsAString& aLabel) const
|
2013-05-24 06:57:00 +04:00
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::label, aLabel);
|
|
|
|
}
|
2013-05-21 20:14:00 +04: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-25 08:14:36 +04:00
|
|
|
uint16_t ReadyState() const;
|
2014-03-14 20:13:41 +04:00
|
|
|
void SetReadyState(uint16_t aReadyState);
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2014-04-07 21:58:38 +04:00
|
|
|
TextTrack* GetTrack();
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const override;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
// Override ParseAttribute() to convert kind strings to enum values.
|
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
2013-05-21 20:14:00 +04: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,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aCompileEventHandlers) override;
|
|
|
|
virtual void UnbindFromTree(bool aDeep, bool aNullParent) override;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
// Check enabling preference.
|
|
|
|
static bool IsWebVTTEnabled();
|
|
|
|
|
2014-03-14 20:13:41 +04:00
|
|
|
void DispatchTrackRunnable(const nsString& aEventName);
|
|
|
|
void DispatchTrustedEvent(const nsAString& aName);
|
2014-06-19 00:10:24 +04:00
|
|
|
|
|
|
|
void DropChannel();
|
|
|
|
|
2013-05-21 20:14:00 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~HTMLTrackElement();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-06-10 19:30:00 +04:00
|
|
|
void OnChannelRedirect(nsIChannel* aChannel, nsIChannel* aNewChannel,
|
|
|
|
uint32_t aFlags);
|
2013-09-19 19:26:00 +04:00
|
|
|
// Open a new channel to the HTMLTrackElement's src attribute and call
|
|
|
|
// mListener's LoadResource().
|
2013-06-10 19:30:00 +04:00
|
|
|
void LoadResource();
|
|
|
|
|
|
|
|
friend class TextTrackCue;
|
2013-09-19 19:26:00 +04:00
|
|
|
friend class WebVTTListener;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TextTrack> mTrack;
|
2013-05-21 20:14:00 +04:00
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<HTMLMediaElement> mMediaParent;
|
|
|
|
RefPtr<WebVTTListener> mListener;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
void CreateTextTrack();
|
2016-07-21 11:49:24 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void DispatchLoadResource();
|
|
|
|
bool mLoadResourceDispatched;
|
2013-05-21 20:14:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLTrackElement_h
|