2013-05-21 20:14:00 +04: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-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
|
|
|
|
2013-05-21 20:14:00 +04:00
|
|
|
class HTMLTrackElement MOZ_FINAL : public nsGenericHTMLElement
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
void SetSrc(const nsAString& aSrc, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
SetHTMLAttr(nsGkAtoms::src, aSrc, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetSrclang(DOMString& aSrclang) const
|
|
|
|
{
|
|
|
|
GetHTMLAttr(nsGkAtoms::srclang, aSrclang);
|
|
|
|
}
|
2013-05-24 06:57:00 +04:00
|
|
|
void GetSrclang(nsString& aSrclang) const
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
2013-05-24 06:57:00 +04:00
|
|
|
void GetLabel(nsString& aLabel) const
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2014-06-20 06:01:40 +04:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo* aNodeInfo, nsINode** aResult) const MOZ_OVERRIDE;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
// For Track, ItemValue reflects the src attribute
|
2015-02-13 04:27:39 +03:00
|
|
|
virtual void GetItemValueText(DOMString& aText) MOZ_OVERRIDE
|
2013-05-21 20:14:00 +04:00
|
|
|
{
|
2015-02-13 04:27:39 +03:00
|
|
|
GetSrc(aText);
|
2013-05-21 20:14:00 +04:00
|
|
|
}
|
2013-05-30 00:43:41 +04:00
|
|
|
virtual void SetItemValueText(const nsAString& aText) MOZ_OVERRIDE
|
2013-05-21 20:14:00 +04: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-30 00:43:41 +04:00
|
|
|
nsAttrValue& aResult) MOZ_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,
|
|
|
|
bool aCompileEventHandlers) MOZ_OVERRIDE;
|
|
|
|
virtual void UnbindFromTree(bool aDeep, bool aNullParent) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) MOZ_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
|
|
|
|
|
|
|
nsRefPtr<TextTrack> mTrack;
|
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
|
|
|
nsRefPtr<HTMLMediaElement> mMediaParent;
|
2013-09-19 19:26:00 +04:00
|
|
|
nsRefPtr<WebVTTListener> mListener;
|
2013-05-21 20:14:00 +04:00
|
|
|
|
|
|
|
void CreateTextTrack();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_HTMLTrackElement_h
|