dom/webidl/LegacyQueryInterface.webidl

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 4 * You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 5 */
michael@0 6
michael@0 7 interface nsISupports;
michael@0 8 interface IID;
michael@0 9
michael@0 10 [NoInterfaceObject]
michael@0 11 interface LegacyQueryInterface {
michael@0 12 // Legacy QueryInterface, only exposed to chrome or XBL code on the
michael@0 13 // main thread.
michael@0 14 nsISupports queryInterface(IID iid);
michael@0 15 };
michael@0 16
michael@0 17 Attr implements LegacyQueryInterface;
michael@0 18 BarProp implements LegacyQueryInterface;
michael@0 19 CaretPosition implements LegacyQueryInterface;
michael@0 20 Comment implements LegacyQueryInterface;
michael@0 21 Crypto implements LegacyQueryInterface;
michael@0 22 CSSPrimitiveValue implements LegacyQueryInterface;
michael@0 23 CSSStyleDeclaration implements LegacyQueryInterface;
michael@0 24 CSSValueList implements LegacyQueryInterface;
michael@0 25 DOMImplementation implements LegacyQueryInterface;
michael@0 26 DOMParser implements LegacyQueryInterface;
michael@0 27 DOMStringMap implements LegacyQueryInterface;
michael@0 28 DOMTokenList implements LegacyQueryInterface;
michael@0 29 Document implements LegacyQueryInterface;
michael@0 30 DocumentFragment implements LegacyQueryInterface;
michael@0 31 DocumentType implements LegacyQueryInterface;
michael@0 32 Element implements LegacyQueryInterface;
michael@0 33 Event implements LegacyQueryInterface;
michael@0 34 EventSource implements LegacyQueryInterface;
michael@0 35 FileList implements LegacyQueryInterface;
michael@0 36 FormData implements LegacyQueryInterface;
michael@0 37 HTMLCollection implements LegacyQueryInterface;
michael@0 38 History implements LegacyQueryInterface;
michael@0 39 IDBCursor implements LegacyQueryInterface;
michael@0 40 IDBDatabase implements LegacyQueryInterface;
michael@0 41 IDBFactory implements LegacyQueryInterface;
michael@0 42 IDBIndex implements LegacyQueryInterface;
michael@0 43 IDBObjectStore implements LegacyQueryInterface;
michael@0 44 IDBRequest implements LegacyQueryInterface;
michael@0 45 IDBTransaction implements LegacyQueryInterface;
michael@0 46 MimeTypeArray implements LegacyQueryInterface;
michael@0 47 MozNamedAttrMap implements LegacyQueryInterface;
michael@0 48 MutationObserver implements LegacyQueryInterface;
michael@0 49 MutationRecord implements LegacyQueryInterface;
michael@0 50 Navigator implements LegacyQueryInterface;
michael@0 51 NodeIterator implements LegacyQueryInterface;
michael@0 52 NodeList implements LegacyQueryInterface;
michael@0 53 Notification implements LegacyQueryInterface;
michael@0 54 OfflineResourceList implements LegacyQueryInterface;
michael@0 55 PaintRequest implements LegacyQueryInterface;
michael@0 56 PaintRequestList implements LegacyQueryInterface;
michael@0 57 Performance implements LegacyQueryInterface;
michael@0 58 Plugin implements LegacyQueryInterface;
michael@0 59 PluginArray implements LegacyQueryInterface;
michael@0 60 ProcessingInstruction implements LegacyQueryInterface;
michael@0 61 Range implements LegacyQueryInterface;
michael@0 62 Rect implements LegacyQueryInterface;
michael@0 63 Selection implements LegacyQueryInterface;
michael@0 64 SVGAnimatedEnumeration implements LegacyQueryInterface;
michael@0 65 SVGAnimatedInteger implements LegacyQueryInterface;
michael@0 66 SVGAnimatedNumber implements LegacyQueryInterface;
michael@0 67 SVGAnimatedNumberList implements LegacyQueryInterface;
michael@0 68 SVGAnimatedPreserveAspectRatio implements LegacyQueryInterface;
michael@0 69 SVGAnimatedString implements LegacyQueryInterface;
michael@0 70 SVGLengthList implements LegacyQueryInterface;
michael@0 71 SVGNumberList implements LegacyQueryInterface;
michael@0 72 SVGPathSegList implements LegacyQueryInterface;
michael@0 73 SVGPoint implements LegacyQueryInterface;
michael@0 74 SVGPointList implements LegacyQueryInterface;
michael@0 75 SVGPreserveAspectRatio implements LegacyQueryInterface;
michael@0 76 SVGRect implements LegacyQueryInterface;
michael@0 77 SVGStringList implements LegacyQueryInterface;
michael@0 78 SVGTransformList implements LegacyQueryInterface;
michael@0 79 Screen implements LegacyQueryInterface;
michael@0 80 StyleSheet implements LegacyQueryInterface;
michael@0 81 Text implements LegacyQueryInterface;
michael@0 82 Touch implements LegacyQueryInterface;
michael@0 83 TouchList implements LegacyQueryInterface;
michael@0 84 TreeColumns implements LegacyQueryInterface;
michael@0 85 TreeWalker implements LegacyQueryInterface;
michael@0 86 UndoManager implements LegacyQueryInterface;
michael@0 87 ValidityState implements LegacyQueryInterface;
michael@0 88 WebSocket implements LegacyQueryInterface;
michael@0 89 Window implements LegacyQueryInterface;
michael@0 90 XMLHttpRequest implements LegacyQueryInterface;
michael@0 91 XMLHttpRequestUpload implements LegacyQueryInterface;
michael@0 92 XMLSerializer implements LegacyQueryInterface;
michael@0 93 XPathEvaluator implements LegacyQueryInterface;

mercurial