2013-09-13 23:44:33 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 et tw=78: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/TextTrackRegion.h"
|
2013-09-20 18:42:35 +00:00
|
|
|
#include "mozilla/dom/VTTRegionBinding.h"
|
2013-09-13 23:44:33 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-04-29 08:57:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TextTrackRegion, mParent)
|
2013-09-13 23:44:33 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(TextTrackRegion)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(TextTrackRegion)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TextTrackRegion)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 22:27:18 +00:00
|
|
|
TextTrackRegion::WrapObject(JSContext* aCx)
|
2013-09-13 23:44:33 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return VTTRegionBinding::Wrap(aCx, this);
|
2013-09-13 23:44:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<TextTrackRegion>
|
|
|
|
TextTrackRegion::Constructor(const GlobalObject& aGlobal, ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(aGlobal.GetAsSupports());
|
|
|
|
if (!window) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<TextTrackRegion> region = new TextTrackRegion(aGlobal.GetAsSupports());
|
|
|
|
return region.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
TextTrackRegion::TextTrackRegion(nsISupports* aGlobal)
|
|
|
|
: mParent(aGlobal)
|
|
|
|
, mWidth(100)
|
|
|
|
, mLines(3)
|
|
|
|
, mRegionAnchorX(0)
|
|
|
|
, mRegionAnchorY(100)
|
|
|
|
, mViewportAnchorX(0)
|
|
|
|
, mViewportAnchorY(100)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TextTrackRegion::CopyValues(TextTrackRegion& aRegion)
|
|
|
|
{
|
|
|
|
mWidth = aRegion.Width();
|
|
|
|
mLines = aRegion.Lines();
|
|
|
|
mRegionAnchorX = aRegion.RegionAnchorX();
|
|
|
|
mRegionAnchorY = aRegion.RegionAnchorY();
|
|
|
|
mViewportAnchorX = aRegion.ViewportAnchorX();
|
|
|
|
mViewportAnchorY = aRegion.ViewportAnchorY();
|
|
|
|
mScroll = aRegion.Scroll();
|
|
|
|
}
|
|
|
|
|
|
|
|
} //namespace dom
|
|
|
|
} //namespace mozilla
|
|
|
|
|