comparison dwt/internal/mozilla/nsIDOMEvent.d @ 348:9a4d7706df52

Test Update to fix linux XPCOM interface issues
author John Reimer <terminal.node@gmail.com>
date Fri, 31 Oct 2008 21:46:44 -0700
parents 942da4b6558a
children 676785ef6d24
comparison
equal deleted inserted replaced
347:ff6dd48f5248 348:9a4d7706df52
19 interface nsIDOMEvent : nsISupports { 19 interface nsIDOMEvent : nsISupports {
20 20
21 static const char[] IID_STR = NS_IDOMEVENT_IID_STR; 21 static const char[] IID_STR = NS_IDOMEVENT_IID_STR;
22 static const nsIID IID = NS_IDOMEVENT_IID; 22 static const nsIID IID = NS_IDOMEVENT_IID;
23 23
24 extern(System):
24 enum { CAPTURING_PHASE = 1U }; 25 enum { CAPTURING_PHASE = 1U };
25 enum { AT_TARGET = 2U }; 26 enum { AT_TARGET = 2U };
26 enum { BUBBLING_PHASE = 3U }; 27 enum { BUBBLING_PHASE = 3U };
27 28
28 nsresult GetType(nsAString * aType); 29 nsresult GetType(nsAString * aType);