1 module org.eclipse.swt.internal.mozilla.nsIRequestObserver;
2 
3 import java.lang.all;
4 
5 import org.eclipse.swt.internal.mozilla.Common;
6 import org.eclipse.swt.internal.mozilla.nsID;
7 import org.eclipse.swt.internal.mozilla.nsISupports;
8 
9 import org.eclipse.swt.internal.mozilla.nsIRequest; 
10 
11 const char[] NS_IREQUESTOBSERVER_IID_STR = "fd91e2e0-1481-11d3-9333-00104ba0fd40";
12 
13 const nsIID NS_IREQUESTOBSERVER_IID= 
14   {0xfd91e2e0, 0x1481, 0x11d3, 
15     [ 0x93, 0x33, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]};
16 
17 interface nsIRequestObserver : nsISupports {
18 
19   static const char[] IID_STR = NS_IREQUESTOBSERVER_IID_STR;
20   static const nsIID IID = NS_IREQUESTOBSERVER_IID;
21 
22 extern(System):
23   nsresult OnStartRequest(nsIRequest aRequest, nsISupports aContext);
24   nsresult OnStopRequest(nsIRequest aRequest, nsISupports aContext, nsresult aStatusCode);
25 
26 }
27