2013-07-15 01:27:19 -07: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: */
|
|
|
|
/* 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 "CallEvent.h"
|
|
|
|
#include "mozilla/dom/CallEventBinding.h"
|
|
|
|
|
|
|
|
#include "TelephonyCall.h"
|
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
2013-09-06 23:19:53 -07:00
|
|
|
using mozilla::ErrorResult;
|
2013-07-15 01:27:19 -07:00
|
|
|
|
|
|
|
/* static */
|
|
|
|
already_AddRefed<CallEvent>
|
|
|
|
CallEvent::Create(EventTarget* aOwner, const nsAString& aType,
|
|
|
|
TelephonyCall* aCall, bool aCanBubble,
|
|
|
|
bool aCancelable)
|
|
|
|
{
|
|
|
|
nsRefPtr<CallEvent> event = new CallEvent(aOwner, nullptr, nullptr);
|
|
|
|
event->mCall = aCall;
|
|
|
|
event->InitEvent(aType, aCanBubble, aCancelable);
|
|
|
|
return event.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject*
|
2014-04-08 15:27:18 -07:00
|
|
|
CallEvent::WrapObject(JSContext* aCx)
|
2013-07-15 01:27:19 -07: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 15:27:17 -07:00
|
|
|
return CallEventBinding::Wrap(aCx, this);
|
2013-07-15 01:27:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(CallEvent)
|
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(CallEvent, Event)
|
2013-07-15 01:27:19 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mCall)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(CallEvent, Event)
|
2013-07-15 01:27:19 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mCall)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_IMPL_ADDREF_INHERITED(CallEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(CallEvent, Event)
|
2013-07-15 01:27:19 -07:00
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(CallEvent)
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
2013-07-15 01:27:19 -07:00
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
already_AddRefed<CallEvent>
|
|
|
|
CallEvent::Constructor(const GlobalObject& aGlobal, const nsAString& aType,
|
|
|
|
const CallEventInit& aOptions, ErrorResult& aRv)
|
|
|
|
{
|
2013-08-22 22:17:08 -07:00
|
|
|
nsCOMPtr<EventTarget> target = do_QueryInterface(aGlobal.GetAsSupports());
|
2013-07-15 01:27:19 -07:00
|
|
|
|
|
|
|
if (!target) {
|
|
|
|
aRv.Throw(NS_ERROR_UNEXPECTED);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<CallEvent> event = Create(target, aType, aOptions.mCall, false, false);
|
|
|
|
|
|
|
|
return event.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<TelephonyCall>
|
|
|
|
CallEvent::GetCall() const
|
|
|
|
{
|
|
|
|
nsRefPtr<TelephonyCall> call = mCall;
|
|
|
|
return call.forget();
|
|
|
|
}
|