Bug 1444686 part 12. Remove nsIDOMDataTransfer from nsIDroppedLinkHandler. r=mystor

MozReview-Commit-ID: 7hseR1dpfWG
This commit is contained in:
Boris Zbarsky 2018-03-13 16:24:00 -04:00
Родитель e026425f6d
Коммит 9b800c10d6
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -5,7 +5,6 @@
#include "nsISupports.idl"
#include "nsIPrincipal.idl"
interface nsIDOMDataTransfer;
interface nsIDOMDragEvent;
[scriptable, uuid(69E14F91-2E09-4CA6-A511-A715C99A2804)]
@ -95,8 +94,10 @@ interface nsIDroppedLinkHandler : nsISupports
* dragged. Since drag/drop performs a roundtrip of parent, child, parent,
* it allows the parent to verify that the child did not modify links
* being dropped.
*
* @param dataTransfer is a DataTransfer. See bug 1444991.
*/
void queryLinks(in nsIDOMDataTransfer aDataTransfer,
void queryLinks(in nsISupports aDataTransfer,
[optional] out unsigned long aCount,
[retval, array, size_is(aCount)] out nsIDroppedLinkItem aLinks);