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: */
|
2014-07-01 03:02:04 +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/. */
|
|
|
|
|
|
|
|
#include "CustomEvent.h"
|
|
|
|
#include "mozilla/dom/CustomEventBinding.h"
|
|
|
|
|
|
|
|
#include "mozilla/dom/BindingUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
|
|
|
CustomEvent::CustomEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetEvent* aEvent)
|
2016-03-09 13:13:12 +03:00
|
|
|
: Event(aOwner, aPresContext, aEvent), mDetail(JS::NullValue()) {
|
|
|
|
mozilla::HoldJSObjects(this);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
2016-03-09 13:13:12 +03:00
|
|
|
CustomEvent::~CustomEvent() { mozilla::DropJSObjects(this); }
|
2014-07-01 03:02:04 +04:00
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CustomEvent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(CustomEvent, Event)
|
2016-03-09 13:13:12 +03:00
|
|
|
tmp->mDetail.setUndefined();
|
|
|
|
mozilla::DropJSObjects(this);
|
2014-07-01 03:02:04 +04:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2016-03-09 13:13:12 +03:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JS_MEMBER_CALLBACK(mDetail)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2014-07-01 03:02:04 +04:00
|
|
|
NS_IMPL_ADDREF_INHERITED(CustomEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(CustomEvent, Event)
|
|
|
|
|
2017-08-30 02:02:48 +03:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(CustomEvent)
|
2014-07-01 03:02:04 +04:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
|
|
|
|
|
|
|
already_AddRefed<CustomEvent> CustomEvent::Constructor(
|
|
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
2019-09-11 17:35:28 +03:00
|
|
|
const CustomEventInit& aParam) {
|
2014-07-01 03:02:04 +04:00
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> t =
|
|
|
|
do_QueryInterface(aGlobal.GetAsSupports());
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<CustomEvent> e = new CustomEvent(t, nullptr, nullptr);
|
2014-07-01 03:02:04 +04:00
|
|
|
bool trusted = e->Init(t);
|
|
|
|
JS::Rooted<JS::Value> detail(aGlobal.Context(), aParam.mDetail);
|
2018-03-26 21:53:51 +03:00
|
|
|
e->InitCustomEvent(aGlobal.Context(), aType, aParam.mBubbles,
|
|
|
|
aParam.mCancelable, detail);
|
2014-07-01 03:02:04 +04:00
|
|
|
e->SetTrusted(trusted);
|
2016-08-31 06:16:11 +03:00
|
|
|
e->SetComposed(aParam.mComposed);
|
2014-07-01 03:02:04 +04:00
|
|
|
return e.forget();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
JSObject* CustomEvent::WrapObjectInternal(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return mozilla::dom::CustomEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEvent::InitCustomEvent(JSContext* aCx, const nsAString& aType,
|
|
|
|
bool aCanBubble, bool aCancelable,
|
2018-03-26 21:53:51 +03:00
|
|
|
JS::Handle<JS::Value> aDetail) {
|
2016-10-30 22:30:06 +03:00
|
|
|
NS_ENSURE_TRUE_VOID(!mEvent->mFlags.mIsBeingDispatched);
|
|
|
|
|
2016-03-09 13:13:12 +03:00
|
|
|
Event::InitEvent(aType, aCanBubble, aCancelable);
|
|
|
|
mDetail = aDetail;
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEvent::GetDetail(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval) {
|
2016-03-09 13:13:12 +03:00
|
|
|
aRetval.set(mDetail);
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<CustomEvent> NS_NewDOMCustomEvent(
|
2014-07-01 03:02:04 +04:00
|
|
|
EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetEvent* aEvent) {
|
2015-08-12 14:39:31 +03:00
|
|
|
RefPtr<CustomEvent> it = new CustomEvent(aOwner, aPresContext, aEvent);
|
|
|
|
return it.forget();
|
2014-07-01 03:02:04 +04:00
|
|
|
}
|