view dwt/internal/mozilla/nsIURIContentListener.d @ 341:942da4b6558a

Ongoing fixup for compile
author John Reimer <terminal.node@gmail.com>
date Sun, 26 Oct 2008 21:19:51 -0700
parents dd63eb078d7a
children 9a4d7706df52
line wrap: on
line source

module dwt.internal.mozilla.nsIURIContentListener;

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

import dwt.internal.mozilla.nsIRequest;
import dwt.internal.mozilla.nsIStreamListener;
import dwt.internal.mozilla.nsIURI; 

const char[] NS_IURICONTENTLISTENER_IID_STR = "94928ab3-8b63-11d3-989d-001083010e9b";

const nsIID NS_IURICONTENTLISTENER_IID= 
  {0x94928ab3, 0x8b63, 0x11d3, 
    [ 0x98, 0x9d, 0x00, 0x10, 0x83, 0x01, 0x0e, 0x9b ]};

//extern(System)

interface nsIURIContentListener : nsISupports {

  static const char[] IID_STR = NS_IURICONTENTLISTENER_IID_STR;
  static const nsIID IID = NS_IURICONTENTLISTENER_IID;

  nsresult OnStartURIOpen(nsIURI aURI, PRBool *_retval);
  nsresult DoContent(char *aContentType, PRBool aIsContentPreferred, nsIRequest aRequest, nsIStreamListener *aContentHandler, PRBool *_retval);
  nsresult IsPreferred(char *aContentType, char **aDesiredContentType, PRBool *_retval);
  nsresult CanHandleContent(char *aContentType, PRBool aIsContentPreferred, char **aDesiredContentType, PRBool *_retval);
  nsresult GetLoadCookie(nsISupports  *aLoadCookie);
  nsresult SetLoadCookie(nsISupports  aLoadCookie);
  nsresult GetParentContentListener(nsIURIContentListener  *aParentContentListener);
  nsresult SetParentContentListener(nsIURIContentListener  aParentContentListener);

}