|
Revision 327:b0d7eb5bd76c, 0.7 kB
(checked in by John Reimer <terminal.node@gmail.com>, 3 years ago)
|
Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win
|
| Line | |
|---|
| 1 |
module dwt.internal.mozilla.imgIContainerObserver; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
import dwt.internal.mozilla.nsISupports; |
|---|
| 6 |
|
|---|
| 7 |
import dwt.internal.mozilla.imgIContainer; |
|---|
| 8 |
import dwt.internal.mozilla.gfxIImageFrame; |
|---|
| 9 |
|
|---|
| 10 |
const char[] IMGICONTAINEROBSERVER_IID_STR = "53102f15-0f53-4939-957e-aea353ad2700"; |
|---|
| 11 |
|
|---|
| 12 |
const nsIID IMGICONTAINEROBSERVER_IID= |
|---|
| 13 |
{0x53102f15, 0x0f53, 0x4939, |
|---|
| 14 |
[ 0x95, 0x7e, 0xae, 0xa3, 0x53, 0xad, 0x27, 0x00 ]}; |
|---|
| 15 |
|
|---|
| 16 |
interface imgIContainerObserver : nsISupports { |
|---|
| 17 |
|
|---|
| 18 |
static const char[] IID_STR = IMGICONTAINEROBSERVER_IID_STR; |
|---|
| 19 |
static const nsIID IID = IMGICONTAINEROBSERVER_IID; |
|---|
| 20 |
|
|---|
| 21 |
extern(System): |
|---|
| 22 |
nsresult FrameChanged(imgIContainer aContainer, gfxIImageFrame aFrame, nsIntRect * aDirtyRect); |
|---|
| 23 |
|
|---|
| 24 |
} |
|---|