mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
646a87b452
--HG-- rename : image/test/reftest/gif/one-color-offset.gif => image/test/mochitest/first-frame-padding.gif rename : image/test/reftest/ico/ico-bmp-8bpp/ico-size-1x1-8bpp.ico => image/test/mochitest/ico-bmp-opaque.ico rename : image/test/reftest/ico/ico-bmp-32bpp/ico-transparent-32bpp.ico => image/test/mochitest/ico-bmp-transparent.ico rename : image/test/reftest/bmp/bmp-8bpp/bmp-size-2x2-8bpp.bmp => image/test/mochitest/opaque.bmp rename : image/test/reftest/gif/red.gif => image/test/mochitest/red.gif rename : image/test/reftest/gif/in-colormap-trans.gif => image/test/mochitest/transparent.gif rename : image/test/reftest/pngsuite-transparency/tbbn1g04.png => image/test/mochitest/transparent.png
23 lines
824 B
Plaintext
23 lines
824 B
Plaintext
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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 "nsISupports.idl"
|
|
|
|
interface imgIRequest;
|
|
|
|
[scriptable, uuid(10be55b3-2029-41a7-a975-538efed250ed)]
|
|
interface imgIScriptedNotificationObserver : nsISupports
|
|
{
|
|
void sizeAvailable(in imgIRequest aRequest);
|
|
void frameUpdate(in imgIRequest aRequest);
|
|
void frameComplete(in imgIRequest aRequest);
|
|
void loadComplete(in imgIRequest aRequest);
|
|
void decodeComplete(in imgIRequest aRequest);
|
|
void discard(in imgIRequest aRequest);
|
|
void isAnimated(in imgIRequest aRequest);
|
|
void hasTransparency(in imgIRequest aRequest);
|
|
};
|