mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54c64f20a9
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'
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=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 "DOMMobileMessageError.h"
|
|
#include "mozilla/dom/DOMMobileMessageErrorBinding.h"
|
|
#include "nsIDOMMozMmsMessage.h"
|
|
#include "nsIDOMMozSmsMessage.h"
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(DOMMobileMessageError)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(DOMMobileMessageError, DOMError)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mSms)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK(mMms)
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(DOMMobileMessageError, DOMError)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSms)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMms)
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(DOMMobileMessageError)
|
|
NS_INTERFACE_MAP_END_INHERITING(DOMError)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(DOMMobileMessageError, DOMError)
|
|
NS_IMPL_RELEASE_INHERITED(DOMMobileMessageError, DOMError)
|
|
|
|
DOMMobileMessageError::DOMMobileMessageError(nsPIDOMWindow* aWindow,
|
|
const nsAString& aName,
|
|
nsIDOMMozSmsMessage* aSms)
|
|
: DOMError(aWindow, aName)
|
|
, mSms(aSms)
|
|
, mMms(nullptr)
|
|
{
|
|
}
|
|
|
|
DOMMobileMessageError::DOMMobileMessageError(nsPIDOMWindow* aWindow,
|
|
const nsAString& aName,
|
|
nsIDOMMozMmsMessage* aMms)
|
|
: DOMError(aWindow, aName)
|
|
, mSms(nullptr)
|
|
, mMms(aMms)
|
|
{
|
|
}
|
|
|
|
void
|
|
DOMMobileMessageError::GetData(OwningMozSmsMessageOrMozMmsMessage& aRetVal) const
|
|
{
|
|
if (mSms) {
|
|
aRetVal.SetAsMozSmsMessage() = mSms;
|
|
return;
|
|
}
|
|
|
|
if (mMms) {
|
|
aRetVal.SetAsMozMmsMessage() = mMms;
|
|
return;
|
|
}
|
|
|
|
MOZ_CRASH("Bad object with invalid mSms and mMms.");
|
|
}
|
|
|
|
JSObject*
|
|
DOMMobileMessageError::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return DOMMobileMessageErrorBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|