mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 08:42:13 +00:00
Bug 916267 - Remove XPIDL for MozContactChangeEvent. r=smaug
This commit is contained in:
parent
8e3961c53d
commit
d25af6f682
@ -177,7 +177,6 @@
|
||||
#endif
|
||||
@BINPATH@/components/dom_camera.xpt
|
||||
@BINPATH@/components/dom_canvas.xpt
|
||||
@BINPATH@/components/dom_contacts.xpt
|
||||
@BINPATH@/components/dom_alarm.xpt
|
||||
@BINPATH@/components/dom_core.xpt
|
||||
@BINPATH@/components/dom_css.xpt
|
||||
|
@ -187,7 +187,6 @@
|
||||
#endif
|
||||
@BINPATH@/components/dom_camera.xpt
|
||||
@BINPATH@/components/dom_canvas.xpt
|
||||
@BINPATH@/components/dom_contacts.xpt
|
||||
@BINPATH@/components/dom_alarm.xpt
|
||||
@BINPATH@/components/dom_core.xpt
|
||||
@BINPATH@/components/dom_css.xpt
|
||||
|
@ -1,14 +0,0 @@
|
||||
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
||||
# vim: set filetype=python:
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMMozContactChangeEvent.idl'
|
||||
]
|
||||
|
||||
XPIDL_MODULE = 'dom_contacts'
|
||||
|
||||
MODULE = 'dom'
|
||||
|
@ -1,24 +0,0 @@
|
||||
/* 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 "nsIDOMEvent.idl"
|
||||
|
||||
[scriptable, builtinclass, uuid(7ee758eb-9353-4ade-8715-9953ea512ee2)]
|
||||
interface nsIDOMMozContactChangeEvent : nsIDOMEvent
|
||||
{
|
||||
readonly attribute DOMString contactID;
|
||||
readonly attribute DOMString reason;
|
||||
|
||||
[noscript] void initMozContactChangeEvent(in DOMString aType,
|
||||
in boolean aCanBubble,
|
||||
in boolean aCancelable,
|
||||
in DOMString aContactID,
|
||||
in DOMString aReason);
|
||||
};
|
||||
|
||||
dictionary MozContactChangeEventInit : EventInit
|
||||
{
|
||||
DOMString contactID;
|
||||
DOMString reason;
|
||||
};
|
@ -11,7 +11,6 @@ interfaces = [
|
||||
'html',
|
||||
'events',
|
||||
'devicestorage',
|
||||
'contacts',
|
||||
'settings',
|
||||
'stylesheets',
|
||||
'sidebar',
|
||||
|
@ -4,7 +4,7 @@
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
[Constructor(DOMString type, optional MozContactChangeEventInit eventInitDict), HeaderFile="GeneratedEventClasses.h"]
|
||||
[Constructor(DOMString type, optional MozContactChangeEventInit eventInitDict)]
|
||||
interface MozContactChangeEvent : Event
|
||||
{
|
||||
readonly attribute DOMString? contactID;
|
||||
|
@ -471,7 +471,6 @@ WEBIDL_FILES += [
|
||||
'ElementReplaceEvent.webidl',
|
||||
'HashChangeEvent.webidl',
|
||||
'MozApplicationEvent.webidl',
|
||||
'MozContactChangeEvent.webidl',
|
||||
'MozMmsEvent.webidl',
|
||||
'MozSettingsEvent.webidl',
|
||||
'MozSmsEvent.webidl',
|
||||
@ -539,6 +538,7 @@ GENERATED_EVENTS_WEBIDL_FILES = [
|
||||
'DeviceLightEvent.webidl',
|
||||
'DeviceProximityEvent.webidl',
|
||||
'MediaStreamEvent.webidl',
|
||||
'MozContactChangeEvent.webidl',
|
||||
'MozInterAppMessageEvent.webidl',
|
||||
'RTCDataChannelEvent.webidl',
|
||||
'RTCPeerConnectionIceEvent.webidl',
|
||||
|
@ -17,7 +17,6 @@ simple_events = [
|
||||
'PopStateEvent',
|
||||
'HashChangeEvent',
|
||||
'CloseEvent',
|
||||
'MozContactChangeEvent',
|
||||
'DeviceOrientationEvent',
|
||||
'MozApplicationEvent',
|
||||
'SmartCardEvent',
|
||||
|
@ -135,7 +135,6 @@
|
||||
@BINPATH@/components/dom_camera.xpt
|
||||
@BINPATH@/components/dom_canvas.xpt
|
||||
@BINPATH@/components/dom_core.xpt
|
||||
@BINPATH@/components/dom_contacts.xpt
|
||||
@BINPATH@/components/dom_css.xpt
|
||||
@BINPATH@/components/dom_devicestorage.xpt
|
||||
@BINPATH@/components/dom_events.xpt
|
||||
|
Loading…
Reference in New Issue
Block a user