view dwt/internal/mozilla/imgIContainerObserver.d @ 353:7f3013c93a95

Oops... Add new 3.4.1 files
author John Reimer <terminal.node@gmail.com>
date Tue, 04 Nov 2008 21:21:43 -0800
parents 9a4d7706df52
children
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 ]};

interface imgIContainerObserver : nsISupports {

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

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

}