Bug 929701 - Part 1: Don't use an attribute with type |any| in DOMMMIError. r=hsinyi,smaug

This commit is contained in:
Edgar Chen 2014-04-23 12:31:57 +08:00
Родитель f923011745
Коммит 3f6e961c19
2 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -4,13 +4,15 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
[JSImplementation="@mozilla.org/dom/mmi-error;1",
[Pref="dom.mobileconnection.enabled",
Constructor(DOMString serviceCode,
DOMString name,
optional DOMString message = "",
optional DOMString additionalInformation = "")]
optional short? additionalInformation = null)]
interface DOMMMIError : DOMError {
[Constant]
readonly attribute DOMString serviceCode;
readonly attribute any additionalInformation;
[Constant]
readonly attribute short? additionalInformation;
};

Просмотреть файл

@ -84,7 +84,6 @@ WEBIDL_FILES = [
'DOMError.webidl',
'DOMException.webidl',
'DOMImplementation.webidl',
'DOMMMIError.webidl',
'DOMParser.webidl',
'DOMPoint.webidl',
'DOMQuad.webidl',
@ -544,6 +543,7 @@ if CONFIG['MOZ_B2G_BT']:
if CONFIG['MOZ_B2G_RIL']:
WEBIDL_FILES += [
'DOMMMIError.webidl',
'IccCardLockError.webidl',
'MozCellBroadcast.webidl',
'MozCellBroadcastEvent.webidl',