mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e7a0ca9c70
Bug 732564 disabled the painting suppression code in browser.js. This removes the caller and the interface. --HG-- extra : rebase_source : 236f81abcf980c41ffdb6c29dc4290a6a7671d14
27 lines
811 B
Plaintext
27 lines
811 B
Plaintext
#include "nsISupports.idl"
|
|
#include "nsIDOMWindow.idl"
|
|
|
|
[scriptable, uuid(56fd8e18-a5cf-4e7a-92ba-4f68b4ad50ac)]
|
|
interface nsIAndroidDrawMetadataProvider : nsISupports {
|
|
AString getDrawMetadata();
|
|
};
|
|
|
|
[scriptable, uuid(0843f3c1-043e-4c64-9d8c-091370548c05)]
|
|
interface nsIBrowserTab : nsISupports {
|
|
readonly attribute nsIDOMWindow window;
|
|
readonly attribute float scale;
|
|
};
|
|
|
|
[scriptable, uuid(d10377b4-1c90-493a-a532-63cb3f16ee2b)]
|
|
interface nsIAndroidBrowserApp : nsISupports {
|
|
nsIBrowserTab getBrowserTab(in PRInt32 tabId);
|
|
};
|
|
|
|
[scriptable, uuid(7dd8441a-4f38-49b2-bd90-da69d02a96cf)]
|
|
interface nsIAndroidBridge : nsISupports
|
|
{
|
|
AString handleGeckoMessage(in AString message);
|
|
void setDrawMetadataProvider(in nsIAndroidDrawMetadataProvider provider);
|
|
attribute nsIAndroidBrowserApp browserApp;
|
|
};
|