view dwt/internal/mozilla/imgIContainerObserver.d @ 286:44258e0b6687

More fixes for xpcom
author John Reimer<terminal.node@gmail.com>
date Tue, 05 Aug 2008 10:11:58 -0700
parents dd63eb078d7a
children 942da4b6558a
line wrap: on
line source

module dwt.internal.mozilla.imgIContainerObserver;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;

import dwt.internal.mozilla.imgIContainer;
import dwt.internal.mozilla.gfxIImageFrame;

const char[] IMGICONTAINEROBSERVER_IID_STR = "53102f15-0f53-4939-957e-aea353ad2700";

const nsIID IMGICONTAINEROBSERVER_IID= 
  {0x53102f15, 0x0f53, 0x4939, 
    [ 0x95, 0x7e, 0xae, 0xa3, 0x53, 0xad, 0x27, 0x00 ]};

extern(System)

interface imgIContainerObserver : nsISupports {

  static const char[] IID_STR = IMGICONTAINEROBSERVER_IID_STR;
  static const nsIID IID = IMGICONTAINEROBSERVER_IID;

  nsresult FrameChanged(imgIContainer aContainer, gfxIImageFrame aFrame, nsIntRect * aDirtyRect);

}