зеркало из https://github.com/mozilla/gecko-dev.git
1856 строки
44 KiB
Plaintext
1856 строки
44 KiB
Plaintext
# -*- Mode:Python; tab-width:8; indent-tabs-mode:nil -*- */
|
|
# vim: set ts=8 sts=4 et sw=4 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/.
|
|
|
|
# DOM Bindings Configuration.
|
|
#
|
|
# The WebIDL interfaces are defined in dom/webidl. For interfaces requiring
|
|
# special handling, there are corresponding entries in the configuration table
|
|
# below. The configuration table maps each interface name to a |descriptor|.
|
|
#
|
|
# Valid fields for all descriptors:
|
|
# * nativeType - The native type (concrete class or XPCOM interface) that
|
|
# instances of this interface will unwrap to. If not
|
|
# specified, defaults to 'nsIDOM' followed by the interface
|
|
# name for external interfaces and
|
|
# 'mozilla::dom::InterfaceName' for everything else.
|
|
# * headerFile - The file in which the nativeType is declared (defaults
|
|
# to an educated guess).
|
|
# * concrete - Indicates whether there exist JS objects with this interface as
|
|
# their primary interface (and hence whose prototype is this
|
|
# interface's prototype object). Always False for callback
|
|
# interfaces. Defaults to True for leaf interfaces and
|
|
# interfaces with constructors, false otherwise.
|
|
# * notflattened - The native type does not have nsIClassInfo, so when
|
|
# wrapping it the right IID needs to be passed in.
|
|
# Only relevant for callback interfaces.
|
|
# * register - True if this binding should be registered. Defaults to true.
|
|
# * wrapperCache: True if this object is a wrapper cache. Objects that are
|
|
# not can only be returned from a limited set of methods,
|
|
# cannot be prefable, and must ensure that they disallow
|
|
# XPConnect wrapping. Always false for callback interfaces.
|
|
# Defaults to true for non-callback descriptors.
|
|
#
|
|
# The following fields are either a string, an array (defaults to an empty
|
|
# array) or a dictionary with three possible keys (all, getterOnly and
|
|
# setterOnly) each having such an array as the value
|
|
#
|
|
# * implicitJSContext - attributes and methods specified in the .webidl file
|
|
# that require a JSContext as the first argument
|
|
#
|
|
# The value for an interface is a dictionary which specifies the
|
|
# descriptor to use when generating that interface's binding.
|
|
|
|
DOMInterfaces = {
|
|
|
|
'AnonymousContent': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'ArchiveReader': {
|
|
'nativeType': 'mozilla::dom::archivereader::ArchiveReader',
|
|
},
|
|
|
|
'ArchiveRequest': {
|
|
'nativeType': 'mozilla::dom::archivereader::ArchiveRequest',
|
|
},
|
|
|
|
'AudioBuffer': {
|
|
'implicitJSContext': [ 'copyToChannel' ],
|
|
},
|
|
|
|
'AudioBufferSourceNode': {
|
|
'implicitJSContext': [ 'buffer' ],
|
|
},
|
|
|
|
'AudioWorklet': {
|
|
'nativeType': 'mozilla::dom::Worklet',
|
|
},
|
|
|
|
'AudioWorkletGlobalScope': {
|
|
'implicitJSContext': [ 'registerProcessor' ],
|
|
},
|
|
|
|
'BarProp': {
|
|
'headerFile': 'mozilla/dom/BarProps.h',
|
|
},
|
|
|
|
'BaseAudioContext': {
|
|
'nativeType': 'mozilla::dom::AudioContext',
|
|
},
|
|
|
|
'BatteryManager': {
|
|
'nativeType': 'mozilla::dom::battery::BatteryManager',
|
|
'headerFile': 'BatteryManager.h'
|
|
},
|
|
|
|
'BrowsingContext': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'Cache': {
|
|
'implicitJSContext': [ 'add', 'addAll', 'match', 'matchAll', 'put',
|
|
'delete', 'keys' ],
|
|
'nativeType': 'mozilla::dom::cache::Cache',
|
|
},
|
|
|
|
'CacheStorage': {
|
|
'implicitJSContext': [ 'match' ],
|
|
'nativeType': 'mozilla::dom::cache::CacheStorage',
|
|
},
|
|
|
|
'CanvasRenderingContext2D': {
|
|
'implicitJSContext': [
|
|
'createImageData', 'getImageData', 'isPointInPath', 'isPointInStroke'
|
|
],
|
|
},
|
|
|
|
'CaretPosition' : {
|
|
'nativeType': 'nsDOMCaretPosition',
|
|
},
|
|
|
|
'ChannelWrapper': {
|
|
'nativeType': 'mozilla::extensions::ChannelWrapper',
|
|
},
|
|
|
|
'Client' : {
|
|
'concrete': True,
|
|
},
|
|
|
|
'Clipboard' : {
|
|
'implicitJSContext' : ['write', 'writeText', 'read', 'readText'],
|
|
},
|
|
|
|
'ClonedErrorHolder': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'console': {
|
|
'nativeType': 'mozilla::dom::Console',
|
|
},
|
|
|
|
'ConsoleInstance': {
|
|
'implicitJSContext': ['clear', 'count', 'countReset', 'groupEnd', 'time', 'timeEnd'],
|
|
},
|
|
|
|
'ConvolverNode': {
|
|
'implicitJSContext': [ 'buffer' ],
|
|
},
|
|
|
|
'Credential' : {
|
|
'concrete': True,
|
|
},
|
|
|
|
'Crypto' : {
|
|
'headerFile': 'Crypto.h'
|
|
},
|
|
|
|
'CSS2Properties': {
|
|
'nativeType': 'nsDOMCSSDeclaration'
|
|
},
|
|
|
|
'CSSConditionRule': {
|
|
'nativeType': 'mozilla::css::ConditionRule',
|
|
'headerFile': 'mozilla/css/GroupRule.h',
|
|
},
|
|
|
|
'CSSGroupingRule': {
|
|
'nativeType': 'mozilla::css::GroupRule',
|
|
},
|
|
|
|
'CSSLexer': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'CSSRule': {
|
|
'nativeType': 'mozilla::css::Rule'
|
|
},
|
|
|
|
'CSSStyleDeclaration': {
|
|
'nativeType': 'nsICSSDeclaration',
|
|
# Concrete because of the font-face mess.
|
|
'concrete': True,
|
|
},
|
|
|
|
'CSSStyleRule': {
|
|
'nativeType': 'mozilla::BindingStyleRule',
|
|
},
|
|
|
|
'CSSStyleSheet': {
|
|
'nativeType': 'mozilla::StyleSheet',
|
|
},
|
|
|
|
'CustomElementRegistry': {
|
|
'implicitJSContext': ['define'],
|
|
},
|
|
|
|
'DebuggerNotification': {
|
|
'concrete': True,
|
|
},
|
|
'CallbackDebuggerNotification': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'DedicatedWorkerGlobalScope': {
|
|
'headerFile': 'mozilla/dom/WorkerScope.h',
|
|
},
|
|
|
|
'DeviceAcceleration': {
|
|
'headerFile': 'mozilla/dom/DeviceMotionEvent.h',
|
|
},
|
|
|
|
'DeviceRotationRate': {
|
|
'headerFile': 'mozilla/dom/DeviceMotionEvent.h',
|
|
},
|
|
|
|
'DominatorTree': {
|
|
'nativeType': 'mozilla::devtools::DominatorTree'
|
|
},
|
|
|
|
'DOMException': {
|
|
'implicitJSContext': [ 'filename', 'lineNumber', 'stack' ],
|
|
},
|
|
|
|
'DOMLocalization': {
|
|
'implicitJSContext': [ 'getAttributes' ],
|
|
},
|
|
|
|
'DOMMatrixReadOnly': {
|
|
'headerFile': 'mozilla/dom/DOMMatrix.h',
|
|
},
|
|
|
|
'DOMPointReadOnly': {
|
|
'headerFile': 'mozilla/dom/DOMPoint.h',
|
|
},
|
|
|
|
'DOMRectList': {
|
|
'headerFile': 'mozilla/dom/DOMRect.h',
|
|
},
|
|
|
|
'DOMRectReadOnly': {
|
|
'headerFile': 'mozilla/dom/DOMRect.h',
|
|
},
|
|
|
|
'DOMRequest': {
|
|
'implicitJSContext': [ 'then' ],
|
|
'concrete': True,
|
|
},
|
|
|
|
'DOMStringMap': {
|
|
'nativeType': 'nsDOMStringMap'
|
|
},
|
|
|
|
'DOMTokenList': {
|
|
'nativeType': 'nsDOMTokenList',
|
|
},
|
|
|
|
'Element': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'Event': {
|
|
'implicitJSContext': [ 'preventDefault' ],
|
|
},
|
|
|
|
'EventTarget': {
|
|
'jsImplParent': 'mozilla::DOMEventTargetHelper',
|
|
},
|
|
|
|
'Exception': {
|
|
'headerFile': 'mozilla/dom/DOMException.h',
|
|
'implicitJSContext': [ '__stringifier', 'filename', 'lineNumber', 'stack' ],
|
|
},
|
|
|
|
'ExtendableEvent': {
|
|
'headerFile': 'mozilla/dom/ServiceWorkerEvents.h',
|
|
'implicitJSContext': [ 'waitUntil' ],
|
|
},
|
|
|
|
'ExtendableMessageEvent': {
|
|
'headerFile': 'mozilla/dom/ServiceWorkerEvents.h',
|
|
},
|
|
|
|
'FetchEvent': {
|
|
'headerFile': 'ServiceWorkerEvents.h',
|
|
'implicitJSContext': [ 'respondWith' ],
|
|
},
|
|
|
|
'FileReader': {
|
|
'implicitJSContext': [ 'readAsArrayBuffer' ],
|
|
},
|
|
|
|
'FileReaderSync': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'FileSystemEntry': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'FontFaceSet': {
|
|
'implicitJSContext': [ 'load' ],
|
|
},
|
|
|
|
'FontFaceSetIterator': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'FrameLoader': {
|
|
'nativeType': 'nsFrameLoader',
|
|
},
|
|
|
|
'FuzzingFunctions': {
|
|
# The codegen is dumb, and doesn't understand that this interface is only a
|
|
# collection of static methods, so we have this `concrete: False` hack.
|
|
'concrete': False,
|
|
'headerFile': 'mozilla/dom/FuzzingFunctions.h',
|
|
},
|
|
|
|
'HeapSnapshot': {
|
|
'nativeType': 'mozilla::devtools::HeapSnapshot'
|
|
},
|
|
|
|
'History': {
|
|
'headerFile': 'nsHistory.h',
|
|
'nativeType': 'nsHistory'
|
|
},
|
|
|
|
'HTMLBaseElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLCollection': {
|
|
'nativeType': 'nsIHTMLCollection',
|
|
# nsContentList.h pulls in nsIHTMLCollection.h
|
|
'headerFile': 'nsContentList.h',
|
|
'concrete': True,
|
|
},
|
|
|
|
'HTMLDirectoryElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLDListElement': {
|
|
'nativeType' : 'mozilla::dom::HTMLSharedListElement'
|
|
},
|
|
|
|
'HTMLDocument': {
|
|
'nativeType': 'nsHTMLDocument',
|
|
'concrete': True,
|
|
},
|
|
|
|
'HTMLElement': {
|
|
'nativeType': 'nsGenericHTMLElement',
|
|
},
|
|
|
|
'HTMLHeadElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLHtmlElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLOListElement': {
|
|
'nativeType' : 'mozilla::dom::HTMLSharedListElement'
|
|
},
|
|
|
|
'HTMLParamElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLQuoteElement': {
|
|
'nativeType': 'mozilla::dom::HTMLSharedElement'
|
|
},
|
|
|
|
'HTMLUListElement': {
|
|
'nativeType' : 'mozilla::dom::HTMLSharedListElement'
|
|
},
|
|
|
|
'IDBCursor': {
|
|
'implicitJSContext': [ 'delete' ],
|
|
'concrete': True,
|
|
},
|
|
|
|
'IDBCursorWithValue': {
|
|
'nativeType': 'mozilla::dom::IDBCursor',
|
|
},
|
|
|
|
'IDBDatabase': {
|
|
'implicitJSContext': [ 'transaction', 'createMutableFile',
|
|
'mozCreateFileHandle' ],
|
|
},
|
|
|
|
'IDBFactory': {
|
|
'implicitJSContext': [ 'open', 'deleteDatabase', 'openForPrincipal',
|
|
'deleteForPrincipal' ],
|
|
},
|
|
|
|
'IDBKeyRange': {
|
|
'wrapperCache': False,
|
|
'concrete': True,
|
|
},
|
|
|
|
'IDBLocaleAwareKeyRange': {
|
|
'headerFile': 'IDBKeyRange.h',
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'IDBObjectStore': {
|
|
'implicitJSContext': [ 'clear' ],
|
|
},
|
|
|
|
'IDBOpenDBRequest': {
|
|
'headerFile': 'IDBRequest.h'
|
|
},
|
|
|
|
'IDBRequest': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'IDBVersionChangeEvent': {
|
|
'headerFile': 'IDBEvents.h',
|
|
},
|
|
|
|
'ImageData': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'InputStream': {
|
|
'nativeType': 'nsIInputStream',
|
|
'notflattened': True
|
|
},
|
|
|
|
'InspectorFontFace': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'IntersectionObserver': {
|
|
'nativeType': 'mozilla::dom::DOMIntersectionObserver',
|
|
},
|
|
|
|
'IntersectionObserverEntry': {
|
|
'nativeType': 'mozilla::dom::DOMIntersectionObserverEntry',
|
|
'headerFile': 'DOMIntersectionObserver.h',
|
|
},
|
|
|
|
'KeyEvent' : {
|
|
'concrete': False,
|
|
},
|
|
|
|
'LegacyMozTCPSocket': {
|
|
'headerFile': 'TCPSocket.h',
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'Localization': {
|
|
'implicitJSContext': [ 'formatValue', 'formatValues', 'formatMessages' ],
|
|
'nativeType': 'mozilla::intl::Localization',
|
|
},
|
|
|
|
'MatchGlob': {
|
|
'nativeType': 'mozilla::extensions::MatchGlob',
|
|
},
|
|
|
|
'MatchPattern': {
|
|
'nativeType': 'mozilla::extensions::MatchPattern',
|
|
},
|
|
|
|
'MatchPatternSet': {
|
|
'headerFile': 'mozilla/extensions/MatchPattern.h',
|
|
'nativeType': 'mozilla::extensions::MatchPatternSet',
|
|
},
|
|
|
|
'MediaCapabilitiesInfo' : {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'MediaKeys' : {
|
|
'implicitJSContext': [ 'createSession']
|
|
},
|
|
|
|
'MediaStream': {
|
|
'headerFile': 'DOMMediaStream.h',
|
|
'nativeType': 'mozilla::DOMMediaStream'
|
|
},
|
|
|
|
'MediaStreamList': {
|
|
'headerFile': 'MediaStreamList.h',
|
|
},
|
|
|
|
'MediaRecorder': {
|
|
'headerFile': 'MediaRecorder.h',
|
|
},
|
|
|
|
'MimeType': {
|
|
'headerFile' : 'nsMimeTypeArray.h',
|
|
'nativeType': 'nsMimeType',
|
|
},
|
|
|
|
'MimeTypeArray': {
|
|
'nativeType': 'nsMimeTypeArray',
|
|
},
|
|
|
|
'MozCanvasPrintState': {
|
|
'headerFile': 'mozilla/dom/HTMLCanvasElement.h',
|
|
'nativeType': 'mozilla::dom::HTMLCanvasPrintState',
|
|
},
|
|
|
|
'MozChannel': {
|
|
'nativeType': 'nsIChannel',
|
|
'notflattened': True
|
|
},
|
|
|
|
'MozDocumentMatcher': {
|
|
'nativeType': 'mozilla::extensions::MozDocumentMatcher',
|
|
'headerFile': 'mozilla/extensions/WebExtensionContentScript.h',
|
|
},
|
|
|
|
'MozDocumentObserver': {
|
|
'nativeType': 'mozilla::extensions::DocumentObserver',
|
|
},
|
|
|
|
'MozSharedMap': {
|
|
'nativeType': 'mozilla::dom::ipc::SharedMap',
|
|
'concrete': True,
|
|
},
|
|
|
|
'MozWritableSharedMap': {
|
|
'headerFile': 'mozilla/dom/ipc/SharedMap.h',
|
|
'nativeType': 'mozilla::dom::ipc::WritableSharedMap',
|
|
},
|
|
|
|
'MozSharedMapChangeEvent': {
|
|
'nativeType': 'mozilla::dom::ipc::SharedMapChangeEvent',
|
|
},
|
|
|
|
'MozStorageAsyncStatementParams': {
|
|
'headerFile': 'mozilla/storage/mozStorageAsyncStatementParams.h',
|
|
'nativeType': 'mozilla::storage::AsyncStatementParams',
|
|
},
|
|
|
|
'MozStorageStatementParams': {
|
|
'headerFile': 'mozilla/storage/mozStorageStatementParams.h',
|
|
'nativeType': 'mozilla::storage::StatementParams',
|
|
},
|
|
|
|
'MozStorageStatementRow': {
|
|
'headerFile': 'mozilla/storage/mozStorageStatementRow.h',
|
|
'nativeType': 'mozilla::storage::StatementRow',
|
|
},
|
|
|
|
'MozQueryInterface': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'MutationObserver': {
|
|
'nativeType': 'nsDOMMutationObserver',
|
|
},
|
|
|
|
'MutationRecord': {
|
|
'nativeType': 'nsDOMMutationRecord',
|
|
'headerFile': 'nsDOMMutationObserver.h',
|
|
},
|
|
|
|
'NamedNodeMap': {
|
|
'nativeType': 'nsDOMAttributeMap',
|
|
},
|
|
|
|
'NetworkInformation': {
|
|
'nativeType': 'mozilla::dom::network::Connection',
|
|
},
|
|
|
|
'Node': {
|
|
'nativeType': 'nsINode',
|
|
},
|
|
|
|
'NodeIterator': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'NodeList': {
|
|
'nativeType': 'nsINodeList',
|
|
'concrete': True,
|
|
},
|
|
|
|
'OfflineAudioContext': {
|
|
'nativeType': 'mozilla::dom::AudioContext',
|
|
},
|
|
|
|
'OfflineResourceList': {
|
|
'nativeType': 'nsDOMOfflineResourceList',
|
|
},
|
|
|
|
'PaintRequestList': {
|
|
'headerFile': 'mozilla/dom/PaintRequest.h',
|
|
},
|
|
|
|
'Path2D': {
|
|
'nativeType': 'mozilla::dom::CanvasPath',
|
|
'headerFile': 'CanvasPath.h'
|
|
},
|
|
|
|
'PeerConnectionImpl': {
|
|
'nativeType': 'mozilla::PeerConnectionImpl',
|
|
'headerFile': 'PeerConnectionImpl.h',
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'PerformanceResourceTiming' : {
|
|
'concrete': True,
|
|
},
|
|
|
|
'PlacesBookmark' : {
|
|
'concrete': True,
|
|
},
|
|
|
|
'PlacesEvent' : {
|
|
'concrete': True,
|
|
},
|
|
|
|
'TransceiverImpl': {
|
|
'nativeType': 'mozilla::TransceiverImpl',
|
|
'headerFile': 'TransceiverImpl.h',
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'Plugin': {
|
|
'headerFile' : 'nsPluginArray.h',
|
|
'nativeType': 'nsPluginElement',
|
|
},
|
|
|
|
'PluginArray': {
|
|
'nativeType': 'nsPluginArray',
|
|
},
|
|
|
|
'PluginTag': {
|
|
'nativeType': 'nsIPluginTag',
|
|
},
|
|
|
|
'Policy': {
|
|
'nativeType': 'mozilla::dom::FeaturePolicy',
|
|
},
|
|
|
|
'PromiseNativeHandler': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'PushEvent': {
|
|
'headerFile': 'ServiceWorkerEvents.h',
|
|
},
|
|
|
|
'PushMessageData': {
|
|
'headerFile': 'ServiceWorkerEvents.h',
|
|
},
|
|
|
|
'Range': {
|
|
'nativeType': 'nsRange',
|
|
},
|
|
|
|
'Request': {
|
|
'implicitJSContext': [ 'arrayBuffer', 'blob', 'formData', 'json', 'text' ],
|
|
},
|
|
|
|
'ResizeObserverEntry': {
|
|
'nativeType': 'mozilla::dom::ResizeObserverEntry',
|
|
'headerFile': 'mozilla/dom/ResizeObserver.h',
|
|
},
|
|
|
|
'ResizeObserverSize': {
|
|
'nativeType': 'mozilla::dom::ResizeObserverSize',
|
|
'headerFile': 'mozilla/dom/ResizeObserver.h',
|
|
},
|
|
|
|
'Response': {
|
|
'implicitJSContext': [ 'arrayBuffer', 'blob', 'formData', 'json', 'text',
|
|
'clone', 'cloneUnfiltered' ],
|
|
},
|
|
|
|
'RTCDataChannel': {
|
|
'nativeType': 'nsDOMDataChannel',
|
|
},
|
|
|
|
'RTCStatsReport': {
|
|
'headerFile': 'RTCStatsReport.h'
|
|
},
|
|
|
|
'Screen': {
|
|
'nativeType': 'nsScreen',
|
|
},
|
|
|
|
'ServiceWorkerGlobalScope': {
|
|
'headerFile': 'mozilla/dom/WorkerScope.h',
|
|
},
|
|
|
|
'ServiceWorkerRegistration': {
|
|
'implicitJSContext': [ 'pushManager' ],
|
|
},
|
|
|
|
'SharedWorkerGlobalScope': {
|
|
'headerFile': 'mozilla/dom/WorkerScope.h',
|
|
},
|
|
|
|
'StreamFilter': {
|
|
'nativeType': 'mozilla::extensions::StreamFilter',
|
|
},
|
|
|
|
'StreamFilterDataEvent': {
|
|
'nativeType': 'mozilla::extensions::StreamFilterDataEvent',
|
|
'headerFile': 'mozilla/extensions/StreamFilterEvents.h',
|
|
},
|
|
|
|
'StructuredCloneHolder': {
|
|
'nativeType': 'mozilla::dom::StructuredCloneBlob',
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'StyleSheet': {
|
|
'nativeType': 'mozilla::StyleSheet',
|
|
'headerFile': 'mozilla/StyleSheetInlines.h',
|
|
},
|
|
|
|
'SVGAnimatedAngle': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedAngle',
|
|
'headerFile': 'DOMSVGAnimatedAngle.h',
|
|
},
|
|
|
|
'SVGAnimatedBoolean': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedBoolean',
|
|
'headerFile': 'DOMSVGAnimatedBoolean.h',
|
|
},
|
|
|
|
'SVGAnimatedEnumeration': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedEnumeration',
|
|
'headerFile': 'DOMSVGAnimatedEnumeration.h',
|
|
},
|
|
|
|
'SVGAnimatedInteger': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedInteger',
|
|
'headerFile': 'DOMSVGAnimatedInteger.h',
|
|
},
|
|
|
|
'SVGAnimatedPreserveAspectRatio': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedPreserveAspectRatio',
|
|
'headerFile': 'SVGAnimatedPreserveAspectRatio.h'
|
|
},
|
|
|
|
'SVGAnimatedLength': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedLength',
|
|
'headerFile': 'DOMSVGAnimatedLength.h',
|
|
},
|
|
|
|
'SVGAnimatedLengthList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedLengthList',
|
|
'headerFile': 'DOMSVGAnimatedLengthList.h',
|
|
},
|
|
|
|
'SVGAnimatedNumber': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedNumber',
|
|
'headerFile': 'DOMSVGAnimatedNumber.h',
|
|
},
|
|
|
|
'SVGAnimatedNumberList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedNumberList',
|
|
'headerFile': 'DOMSVGAnimatedNumberList.h'
|
|
},
|
|
|
|
'SVGAnimatedString': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedString',
|
|
'headerFile': 'DOMSVGAnimatedString.h',
|
|
},
|
|
|
|
'SVGAnimatedTransformList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAnimatedTransformList',
|
|
'headerFile': 'DOMSVGAnimatedTransformList.h'
|
|
},
|
|
|
|
'SVGAngle': {
|
|
'nativeType': 'mozilla::dom::DOMSVGAngle',
|
|
'headerFile': 'DOMSVGAngle.h'
|
|
},
|
|
|
|
'SVGElement': {
|
|
'concrete': True,
|
|
},
|
|
|
|
'SVGFEFuncAElement': {
|
|
'headerFile': 'mozilla/dom/SVGComponentTransferFunctionElement.h',
|
|
},
|
|
|
|
'SVGFEFuncBElement': {
|
|
'headerFile': 'mozilla/dom/SVGComponentTransferFunctionElement.h',
|
|
},
|
|
|
|
'SVGFEFuncGElement': {
|
|
'headerFile': 'mozilla/dom/SVGComponentTransferFunctionElement.h',
|
|
},
|
|
|
|
'SVGFEFuncRElement': {
|
|
'headerFile': 'mozilla/dom/SVGComponentTransferFunctionElement.h',
|
|
},
|
|
|
|
'SVGLength': {
|
|
'nativeType': 'mozilla::dom::DOMSVGLength',
|
|
'headerFile': 'DOMSVGLength.h'
|
|
},
|
|
|
|
'SVGLengthList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGLengthList',
|
|
'headerFile': 'DOMSVGLengthList.h'
|
|
},
|
|
|
|
'SVGLinearGradientElement': {
|
|
'headerFile': 'mozilla/dom/SVGGradientElement.h',
|
|
},
|
|
|
|
'SVGNumber': {
|
|
'nativeType': 'mozilla::dom::DOMSVGNumber',
|
|
'headerFile': 'DOMSVGNumber.h',
|
|
},
|
|
|
|
'SVGNumberList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGNumberList',
|
|
'headerFile': 'DOMSVGNumberList.h'
|
|
},
|
|
|
|
'SVGPathSeg': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSeg',
|
|
'headerFile': 'DOMSVGPathSeg.h',
|
|
},
|
|
|
|
'SVGPathSegClosePath': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegClosePath',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegMovetoAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegMovetoAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegMovetoRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegMovetoRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoCubicAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoCubicAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoCubicRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoCubicRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoQuadraticAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoQuadraticAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoQuadraticRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoQuadraticRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegArcAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegArcAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegArcRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegArcRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoHorizontalAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoHorizontalAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoHorizontalRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoHorizontalRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoVerticalAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoVerticalAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegLinetoVerticalRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegLinetoVerticalRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoCubicSmoothAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoCubicSmoothAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoCubicSmoothRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoCubicSmoothRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoQuadraticSmoothAbs': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoQuadraticSmoothAbs',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegCurvetoQuadraticSmoothRel': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegCurvetoQuadraticSmoothRel',
|
|
'headerFile': 'DOMSVGPathSeg.h'
|
|
},
|
|
|
|
'SVGPathSegList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPathSegList',
|
|
'headerFile': 'DOMSVGPathSegList.h'
|
|
},
|
|
|
|
'SVGPoint': {
|
|
'nativeType': 'mozilla::dom::nsISVGPoint',
|
|
'headerFile': 'nsISVGPoint.h'
|
|
},
|
|
|
|
'SVGPointList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPointList',
|
|
'headerFile': 'DOMSVGPointList.h'
|
|
},
|
|
|
|
'SVGPreserveAspectRatio': {
|
|
'nativeType': 'mozilla::dom::DOMSVGPreserveAspectRatio',
|
|
'headerFile': 'SVGPreserveAspectRatio.h'
|
|
},
|
|
|
|
'SVGRadialGradientElement': {
|
|
'headerFile': 'mozilla/dom/SVGGradientElement.h',
|
|
},
|
|
|
|
'SVGStringList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGStringList',
|
|
'headerFile': 'DOMSVGStringList.h',
|
|
},
|
|
|
|
'SVGTransform': {
|
|
'nativeType': 'mozilla::dom::DOMSVGTransform',
|
|
'headerFile': 'DOMSVGTransform.h',
|
|
},
|
|
|
|
'SVGTransformList': {
|
|
'nativeType': 'mozilla::dom::DOMSVGTransformList',
|
|
'headerFile': 'DOMSVGTransformList.h'
|
|
},
|
|
|
|
'SVGUnitTypes' : {
|
|
# Maybe should be a namespace.
|
|
'concrete': False,
|
|
},
|
|
|
|
'SVGZoomAndPan' : {
|
|
# Part of a kinda complicated legacy setup for putting some constants on
|
|
# both interfaces and this thing, which ideally should be a namespace.
|
|
'concrete': False,
|
|
},
|
|
|
|
'TelemetryStopwatch': {
|
|
'nativeType': 'mozilla::telemetry::Stopwatch',
|
|
},
|
|
|
|
'TestFunctions': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'Text': {
|
|
# Total hack to allow binding code to realize that nsTextNode can
|
|
# in fact be cast to Text.
|
|
'headerFile': 'nsTextNode.h',
|
|
},
|
|
|
|
'TextDecoder': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'TextEncoder': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'TextMetrics': {
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'TCPSocket': {
|
|
'implicitJSContext': ['send']
|
|
},
|
|
|
|
'TouchList': {
|
|
'headerFile': 'mozilla/dom/TouchEvent.h',
|
|
},
|
|
|
|
'TreeColumn': {
|
|
'nativeType': 'nsTreeColumn',
|
|
'headerFile': 'nsTreeColumns.h',
|
|
},
|
|
|
|
'TreeColumns': {
|
|
'nativeType': 'nsTreeColumns',
|
|
},
|
|
|
|
'TreeContentView': {
|
|
'nativeType': 'nsTreeContentView',
|
|
},
|
|
|
|
'TreeWalker': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'VisualViewport': {
|
|
'nativeType': 'mozilla::dom::VisualViewport',
|
|
},
|
|
|
|
'VTTCue': {
|
|
'nativeType': 'mozilla::dom::TextTrackCue'
|
|
},
|
|
|
|
'VTTRegion': {
|
|
'nativeType': 'mozilla::dom::TextTrackRegion',
|
|
},
|
|
|
|
'WebAuthentication': {
|
|
'implicitJSContext': 'makeCredential',
|
|
},
|
|
|
|
'WebExtensionContentScript': {
|
|
'nativeType': 'mozilla::extensions::WebExtensionContentScript',
|
|
},
|
|
|
|
'WebExtensionPolicy': {
|
|
'nativeType': 'mozilla::extensions::WebExtensionPolicy',
|
|
},
|
|
|
|
'WindowClient': {
|
|
'nativeType': 'mozilla::dom::Client',
|
|
},
|
|
|
|
'WebGLActiveInfo': {
|
|
'nativeType': 'mozilla::WebGLActiveInfo',
|
|
'headerFile': 'WebGLActiveInfo.h'
|
|
},
|
|
|
|
'WebGLBuffer': {
|
|
'nativeType': 'mozilla::WebGLBuffer',
|
|
'headerFile': 'WebGLBuffer.h'
|
|
},
|
|
|
|
'EXT_float_blend': {
|
|
'nativeType': 'mozilla::WebGLExtensionFloatBlend',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_texture_compression_bptc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureBPTC',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_texture_compression_rgtc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureRGTC',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_fbo_render_mipmap': {
|
|
'nativeType': 'mozilla::WebGLExtensionFBORenderMipmap',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OVR_multiview2': {
|
|
'nativeType': 'mozilla::WebGLExtensionMultiview',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_astc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureASTC',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_etc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureES3',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_etc1': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureETC1',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_pvrtc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTexturePVRTC',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_s3tc': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureS3TC',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_compressed_texture_s3tc_srgb': {
|
|
'nativeType': 'mozilla::WebGLExtensionCompressedTextureS3TC_SRGB',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_depth_texture': {
|
|
'nativeType': 'mozilla::WebGLExtensionDepthTexture',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_debug_renderer_info': {
|
|
'nativeType': 'mozilla::WebGLExtensionDebugRendererInfo',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_debug_shaders': {
|
|
'nativeType': 'mozilla::WebGLExtensionDebugShaders',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_explicit_present': {
|
|
'nativeType': 'mozilla::WebGLExtensionExplicitPresent',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_element_index_uint': {
|
|
'nativeType': 'mozilla::WebGLExtensionElementIndexUint',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_frag_depth': {
|
|
'nativeType': 'mozilla::WebGLExtensionFragDepth',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_lose_context': {
|
|
'nativeType': 'mozilla::WebGLExtensionLoseContext',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_sRGB': {
|
|
'nativeType': 'mozilla::WebGLExtensionSRGB',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_standard_derivatives': {
|
|
'nativeType': 'mozilla::WebGLExtensionStandardDerivatives',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_shader_texture_lod': {
|
|
'nativeType': 'mozilla::WebGLExtensionShaderTextureLod',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_texture_filter_anisotropic': {
|
|
'nativeType': 'mozilla::WebGLExtensionTextureFilterAnisotropic',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_texture_float': {
|
|
'nativeType': 'mozilla::WebGLExtensionTextureFloat',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_texture_float_linear': {
|
|
'nativeType': 'mozilla::WebGLExtensionTextureFloatLinear',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_texture_half_float': {
|
|
'nativeType': 'mozilla::WebGLExtensionTextureHalfFloat',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_texture_half_float_linear': {
|
|
'nativeType': 'mozilla::WebGLExtensionTextureHalfFloatLinear',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_color_buffer_float': {
|
|
'nativeType': 'mozilla::WebGLExtensionColorBufferFloat',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_color_buffer_half_float': {
|
|
'nativeType': 'mozilla::WebGLExtensionColorBufferHalfFloat',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_color_buffer_float': {
|
|
'nativeType': 'mozilla::WebGLExtensionEXTColorBufferFloat',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WEBGL_draw_buffers': {
|
|
'nativeType': 'mozilla::WebGLExtensionDrawBuffers',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'OES_vertex_array_object': {
|
|
'nativeType': 'mozilla::WebGLExtensionVertexArray',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'ANGLE_instanced_arrays': {
|
|
'nativeType': 'mozilla::WebGLExtensionInstancedArrays',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_blend_minmax': {
|
|
'nativeType': 'mozilla::WebGLExtensionBlendMinMax',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'EXT_disjoint_timer_query': {
|
|
'nativeType': 'mozilla::WebGLExtensionDisjointTimerQuery',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'MOZ_debug': {
|
|
'nativeType': 'mozilla::WebGLExtensionMOZDebug',
|
|
'headerFile': 'WebGLExtensions.h'
|
|
},
|
|
|
|
'WebGLFramebuffer': {
|
|
'nativeType': 'mozilla::WebGLFramebuffer',
|
|
'headerFile': 'WebGLFramebuffer.h'
|
|
},
|
|
|
|
'WebGLProgram': {
|
|
'nativeType': 'mozilla::WebGLProgram',
|
|
'headerFile': 'WebGLProgram.h'
|
|
},
|
|
|
|
'WebGLQuery': {
|
|
'nativeType': 'mozilla::WebGLQuery',
|
|
'headerFile': 'WebGLQuery.h'
|
|
},
|
|
|
|
'WebGLRenderbuffer': {
|
|
'nativeType': 'mozilla::WebGLRenderbuffer',
|
|
'headerFile': 'WebGLRenderbuffer.h'
|
|
},
|
|
|
|
'WebGLRenderingContext': {
|
|
'nativeType': 'mozilla::WebGLContext',
|
|
'headerFile': 'WebGLContext.h',
|
|
},
|
|
|
|
'WebGL2RenderingContext': {
|
|
'nativeType': 'mozilla::WebGL2Context',
|
|
'headerFile': 'WebGL2Context.h',
|
|
},
|
|
|
|
'WebGLSampler': {
|
|
'nativeType': 'mozilla::WebGLSampler',
|
|
'headerFile': 'WebGLSampler.h'
|
|
},
|
|
|
|
'WebGLShader': {
|
|
'nativeType': 'mozilla::WebGLShader',
|
|
'headerFile': 'WebGLShader.h'
|
|
},
|
|
|
|
'WebGLShaderPrecisionFormat': {
|
|
'nativeType': 'mozilla::WebGLShaderPrecisionFormat',
|
|
'headerFile': 'WebGLShaderPrecisionFormat.h',
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'WebGLSync': {
|
|
'nativeType': 'mozilla::WebGLSync',
|
|
'headerFile': 'WebGLSync.h'
|
|
},
|
|
|
|
'WebGLTexture': {
|
|
'nativeType': 'mozilla::WebGLTexture',
|
|
'headerFile': 'WebGLTexture.h'
|
|
},
|
|
|
|
'WebGLTransformFeedback': {
|
|
'nativeType': 'mozilla::WebGLTransformFeedback',
|
|
'headerFile': 'WebGLTransformFeedback.h'
|
|
},
|
|
|
|
'WebGLUniformLocation': {
|
|
'nativeType': 'mozilla::WebGLUniformLocation',
|
|
'headerFile': 'WebGLUniformLocation.h'
|
|
},
|
|
|
|
'WebGLVertexArrayObject': {
|
|
'nativeType': 'mozilla::WebGLVertexArray',
|
|
'headerFile': 'WebGLVertexArray.h'
|
|
},
|
|
|
|
# WebGPU
|
|
|
|
'GPU': {
|
|
'nativeType': 'mozilla::webgpu::Instance',
|
|
},
|
|
'GPUAdapter': {
|
|
'nativeType': 'mozilla::webgpu::Adapter',
|
|
},
|
|
'GPUBindGroup': {
|
|
'nativeType': 'mozilla::webgpu::BindGroup',
|
|
},
|
|
'GPUBindGroupLayout': {
|
|
'nativeType': 'mozilla::webgpu::BindGroupLayout',
|
|
},
|
|
'GPUBuffer': {
|
|
'nativeType': 'mozilla::webgpu::Buffer',
|
|
},
|
|
'GPUCanvasContext': {
|
|
'nativeType': 'mozilla::webgpu::CanvasContext',
|
|
},
|
|
'GPUCommandBuffer': {
|
|
'nativeType': 'mozilla::webgpu::CommandBuffer',
|
|
},
|
|
'GPUCommandEncoder': {
|
|
'nativeType': 'mozilla::webgpu::CommandEncoder',
|
|
},
|
|
'GPUComputePassEncoder': {
|
|
'nativeType': 'mozilla::webgpu::ComputePassEncoder',
|
|
},
|
|
'GPUComputePipeline': {
|
|
'nativeType': 'mozilla::webgpu::ComputePipeline',
|
|
},
|
|
'GPUDevice': {
|
|
'nativeType': 'mozilla::webgpu::Device',
|
|
},
|
|
'GPUDeviceLostInfo': {
|
|
'nativeType': 'mozilla::webgpu::DeviceLostInfo',
|
|
},
|
|
'GPUFence': {
|
|
'nativeType': 'mozilla::webgpu::Fence',
|
|
},
|
|
'GPUOutOfMemoryError': {
|
|
'nativeType': 'mozilla::webgpu::OutOfMemoryError',
|
|
},
|
|
'GPUPipelineLayout': {
|
|
'nativeType': 'mozilla::webgpu::PipelineLayout',
|
|
},
|
|
'GPUProgrammablePassEncoder': {
|
|
'nativeType': 'mozilla::webgpu::ProgrammablePassEncoder',
|
|
},
|
|
'GPUQueue': {
|
|
'nativeType': 'mozilla::webgpu::Queue',
|
|
},
|
|
'GPURenderBundle': {
|
|
'nativeType': 'mozilla::webgpu::RenderBundle',
|
|
},
|
|
'GPURenderBundleEncoder': {
|
|
'nativeType': 'mozilla::webgpu::RenderBundleEncoder',
|
|
},
|
|
'GPURenderEncoderBase': {
|
|
'nativeType': 'mozilla::webgpu::RenderEncoderBase',
|
|
},
|
|
'GPURenderPassEncoder': {
|
|
'nativeType': 'mozilla::webgpu::RenderPassEncoder',
|
|
},
|
|
'GPURenderPipeline': {
|
|
'nativeType': 'mozilla::webgpu::RenderPipeline',
|
|
},
|
|
'GPUSampler': {
|
|
'nativeType': 'mozilla::webgpu::Sampler',
|
|
},
|
|
'GPUShaderModule': {
|
|
'nativeType': 'mozilla::webgpu::ShaderModule',
|
|
},
|
|
'GPUSwapChain': {
|
|
'nativeType': 'mozilla::webgpu::SwapChain',
|
|
},
|
|
'GPUTexture': {
|
|
'nativeType': 'mozilla::webgpu::Texture',
|
|
},
|
|
'GPUTextureView': {
|
|
'nativeType': 'mozilla::webgpu::TextureView',
|
|
},
|
|
'GPUValidationError': {
|
|
'nativeType': 'mozilla::webgpu::ValidationError',
|
|
},
|
|
|
|
'GPUBindingType': {
|
|
'concrete': False,
|
|
},
|
|
'GPUBlendFactor': {
|
|
'concrete': False,
|
|
},
|
|
'GPUBlendOperation': {
|
|
'concrete': False,
|
|
},
|
|
'GPUBufferUsage': {
|
|
'concrete': False,
|
|
},
|
|
'GPUColorWrite': {
|
|
'concrete': False,
|
|
},
|
|
'GPUCompareFunction': {
|
|
'concrete': False,
|
|
},
|
|
'GPUFilterMode': {
|
|
'concrete': False,
|
|
},
|
|
'GPUIndexFormat': {
|
|
'concrete': False,
|
|
},
|
|
'GPUInputStepMode': {
|
|
'concrete': False,
|
|
},
|
|
'GPULoadOp': {
|
|
'concrete': False,
|
|
},
|
|
'GPUPrimitiveTopology': {
|
|
'concrete': False,
|
|
},
|
|
'GPUShaderStage': {
|
|
'concrete': False,
|
|
},
|
|
'GPUStencilOperation': {
|
|
'concrete': False,
|
|
},
|
|
'GPUStoreOp': {
|
|
'concrete': False,
|
|
},
|
|
'GPUTextureDimension': {
|
|
'concrete': False,
|
|
},
|
|
'GPUTextureFormat': {
|
|
'concrete': False,
|
|
},
|
|
'GPUTextureUsage': {
|
|
'concrete': False,
|
|
},
|
|
'GPUVertexFormat': {
|
|
'concrete': False,
|
|
},
|
|
|
|
# WebRTC
|
|
|
|
'WebrtcGlobalInformation': {
|
|
'nativeType': 'mozilla::dom::WebrtcGlobalInformation',
|
|
'headerFile': 'WebrtcGlobalInformation.h',
|
|
},
|
|
|
|
'Window': {
|
|
'nativeType': 'nsGlobalWindowInner',
|
|
'headerFile': 'nsGlobalWindow.h',
|
|
'implicitJSContext': [
|
|
'createImageBitmap',
|
|
'requestIdleCallback'
|
|
],
|
|
},
|
|
|
|
'WindowProxy': {
|
|
'nativeType': 'mozilla::dom::WindowProxyHolder',
|
|
'headerFile': 'mozilla/dom/WindowProxyHolder.h',
|
|
'concrete': False
|
|
},
|
|
|
|
'WindowRoot': {
|
|
'nativeType': 'nsWindowRoot'
|
|
},
|
|
|
|
'WorkerDebuggerGlobalScope': {
|
|
'headerFile': 'mozilla/dom/WorkerScope.h',
|
|
'implicitJSContext': [
|
|
'dump', 'global', 'reportError', 'setConsoleEventHandler',
|
|
],
|
|
},
|
|
|
|
'WorkerGlobalScope': {
|
|
'headerFile': 'mozilla/dom/WorkerScope.h',
|
|
'implicitJSContext': [ 'createImageBitmap', 'importScripts' ],
|
|
},
|
|
|
|
'Worklet': {
|
|
# Paint worklets just use the Worklet interface.
|
|
'concrete': True,
|
|
},
|
|
|
|
'XMLHttpRequest': {
|
|
'implicitJSContext': [ 'send'],
|
|
},
|
|
|
|
'XMLSerializer': {
|
|
'nativeType': 'nsDOMSerializer',
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'XPathEvaluator': {
|
|
'wrapperCache': False,
|
|
'concrete': True,
|
|
},
|
|
|
|
'XPathExpression': {
|
|
'wrapperCache': False,
|
|
},
|
|
|
|
'XSLTProcessor': {
|
|
'nativeType': 'txMozillaXSLTProcessor',
|
|
},
|
|
|
|
'XULElement': {
|
|
'nativeType': 'nsXULElement',
|
|
},
|
|
|
|
####################################
|
|
# Test Interfaces of various sorts #
|
|
####################################
|
|
|
|
'TestInterface' : {
|
|
# Keep this in sync with TestExampleInterface
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestParentInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestChildInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestCImplementedInterface' : {
|
|
'headerFile': 'TestCImplementedInterface.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestCImplementedInterface2' : {
|
|
'headerFile': 'TestCImplementedInterface.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestJSImplInterface' : {
|
|
# Keep this in sync with TestExampleInterface
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestJSImplInterface2' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestJSImplInterface3' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestJSImplInterface4' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestJSImplInterface5' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestJSImplInterface6' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNavigator' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register' : False
|
|
},
|
|
|
|
'TestNavigatorWithConstructor' : {
|
|
'headerFile': 'TestJSImplGenBinding.h',
|
|
'register' : False
|
|
},
|
|
|
|
'TestExternalInterface' : {
|
|
'nativeType': 'mozilla::dom::TestExternalInterface',
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNonWrapperCacheInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
'wrapperCache': False
|
|
},
|
|
|
|
'IndirectlyImplementedInterface': {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
'castable': False,
|
|
},
|
|
|
|
'OnlyForUseInConstructor' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'ImplementedInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'ImplementedInterfaceParent' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'DiamondImplements' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'DiamondBranch1A' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'DiamondBranch1B' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'DiamondBranch2A' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'DiamondBranch2B' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedGetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNamedGetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedGetterAndSetterAndNamedGetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedAndNamedGetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedSetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNamedSetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedAndNamedSetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestIndexedAndNamedGetterAndSetterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestRenamedInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
'nativeType': 'nsRenamedInterface'
|
|
},
|
|
|
|
'TestNamedDeleterInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNamedDeleterWithRetvalInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestCppKeywordNamedMethodsInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestExampleInterface' : {
|
|
# Keep this in sync with TestInterface
|
|
'headerFile': 'TestExampleInterface-example.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestExampleWorkerInterface' : {
|
|
'headerFile': 'TestExampleWorkerInterface-example.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestExampleProxyInterface' : {
|
|
'headerFile': 'TestExampleProxyInterface-example.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestExampleThrowingConstructorInterface' : {
|
|
'headerFile': 'TestExampleThrowingConstructorInterface-example.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestDeprecatedInterface' : {
|
|
# Keep this in sync with TestExampleInterface
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestInterfaceWithPromiseConstructorArg' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestSecureContextInterface' : {
|
|
# Keep this in sync with TestExampleInterface
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False
|
|
},
|
|
|
|
'TestNamespace' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestRenamedNamespace' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestProtoObjectHackedNamespace' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestWorkerExposedInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestHTMLConstructorInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestThrowingConstructorInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestCEReactionsInterface' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
|
|
'TestAttributesOnTypes' : {
|
|
'headerFile': 'TestBindingHeader.h',
|
|
'register': False,
|
|
},
|
|
}
|
|
|
|
# These are temporary, until they've been converted to use new DOM bindings
|
|
def addExternalIface(iface, nativeType=None, headerFile=None,
|
|
notflattened=False):
|
|
if iface in DOMInterfaces:
|
|
raise Exception('Interface declared both as WebIDL and External interface')
|
|
domInterface = {
|
|
'concrete': False
|
|
}
|
|
if not nativeType is None:
|
|
domInterface['nativeType'] = nativeType
|
|
if not headerFile is None:
|
|
domInterface['headerFile'] = headerFile
|
|
domInterface['notflattened'] = notflattened
|
|
DOMInterfaces[iface] = domInterface
|
|
|
|
addExternalIface('Cookie', nativeType='nsICookie',
|
|
headerFile='nsICookie.h', notflattened=True)
|
|
addExternalIface('ContentSecurityPolicy', nativeType='nsIContentSecurityPolicy',
|
|
notflattened=True)
|
|
addExternalIface('HitRegionOptions', nativeType='nsISupports')
|
|
addExternalIface('imgINotificationObserver', nativeType='imgINotificationObserver')
|
|
addExternalIface('imgIRequest', nativeType='imgIRequest', notflattened=True)
|
|
addExternalIface('LoadContext', nativeType='nsILoadContext', notflattened=True)
|
|
addExternalIface('LoadInfo', nativeType='nsILoadInfo',
|
|
headerFile='nsILoadInfo.h', notflattened=True)
|
|
addExternalIface('MenuBuilder', nativeType='nsIMenuBuilder', notflattened=True)
|
|
addExternalIface('XULControllers', nativeType='nsIControllers', notflattened=True)
|
|
addExternalIface('MozObserver', nativeType='nsIObserver', notflattened=True)
|
|
addExternalIface('MozTreeView', nativeType='nsITreeView',
|
|
headerFile='nsITreeView.h', notflattened=True)
|
|
addExternalIface('MozWakeLockListener', headerFile='nsIDOMWakeLockListener.h')
|
|
addExternalIface('nsIBrowserDOMWindow', nativeType='nsIBrowserDOMWindow',
|
|
notflattened=True)
|
|
addExternalIface('nsIDOMWindowUtils', nativeType='nsIDOMWindowUtils', notflattened=True)
|
|
addExternalIface('nsIEventTarget', nativeType='nsIEventTarget', notflattened=True)
|
|
addExternalIface('nsIFile', nativeType='nsIFile', notflattened=True)
|
|
addExternalIface('nsILoadGroup', nativeType='nsILoadGroup',
|
|
headerFile='nsILoadGroup.h', notflattened=True)
|
|
addExternalIface('nsIPrintSettings', nativeType='nsIPrintSettings',
|
|
notflattened=True)
|
|
addExternalIface('nsISelectionListener', nativeType='nsISelectionListener')
|
|
addExternalIface('nsIStreamListener', nativeType='nsIStreamListener', notflattened=True)
|
|
addExternalIface('nsITransportProvider', nativeType='nsITransportProvider')
|
|
addExternalIface('nsITreeSelection', nativeType='nsITreeSelection',
|
|
notflattened=True)
|
|
addExternalIface('nsISupports', nativeType='nsISupports')
|
|
addExternalIface('nsIDocShell', nativeType='nsIDocShell', notflattened=True)
|
|
addExternalIface('nsIReferrerInfo', nativeType='nsIReferrerInfo', notflattened=True)
|
|
addExternalIface('nsIWebNavigation', nativeType='nsIWebNavigation', notflattened=True)
|
|
addExternalIface('nsIEditor', nativeType='nsIEditor', notflattened=True)
|
|
addExternalIface('nsIVariant', nativeType='nsIVariant', notflattened=True)
|
|
addExternalIface('nsIWebBrowserPersistDocumentReceiver',
|
|
nativeType='nsIWebBrowserPersistDocumentReceiver',
|
|
headerFile='nsIWebBrowserPersistDocument.h',
|
|
notflattened=True)
|
|
addExternalIface('nsIWebProgressListener', nativeType='nsIWebProgressListener',
|
|
notflattened=True)
|
|
addExternalIface('OutputStream', nativeType='nsIOutputStream',
|
|
notflattened=True)
|
|
addExternalIface('Principal', nativeType='nsIPrincipal',
|
|
headerFile='nsIPrincipal.h', notflattened=True)
|
|
addExternalIface('StackFrame', nativeType='nsIStackFrame',
|
|
headerFile='nsIException.h', notflattened=True)
|
|
addExternalIface('RemoteTab', nativeType='nsIRemoteTab',
|
|
notflattened=True)
|
|
addExternalIface('URI', nativeType='nsIURI', headerFile='nsIURI.h',
|
|
notflattened=True)
|
|
addExternalIface('XULCommandDispatcher', notflattened=True)
|
|
addExternalIface('nsISHistory', nativeType='nsISHistory', notflattened=True)
|
|
addExternalIface('ReferrerInfo', nativeType='nsIReferrerInfo')
|
|
addExternalIface('nsIPermissionDelegateHandler',
|
|
nativeType='nsIPermissionDelegateHandler',
|
|
notflattened=True)
|