comparison dwt/internal/mozilla/nsIContentViewer.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
comparison
equal deleted inserted replaced
347:ff6dd48f5248 348:9a4d7706df52
15 15
16 const nsIID NS_ICONTENTVIEWER_IID= 16 const nsIID NS_ICONTENTVIEWER_IID=
17 {0x6a7ddb40, 0x8a9e, 0x4576, 17 {0x6a7ddb40, 0x8a9e, 0x4576,
18 [ 0x8a, 0xd1, 0x71, 0xc5, 0x64, 0x1d, 0x87, 0x80 ]}; 18 [ 0x8a, 0xd1, 0x71, 0xc5, 0x64, 0x1d, 0x87, 0x80 ]};
19 19
20 //extern(System)
21
22 interface nsIContentViewer : nsISupports { 20 interface nsIContentViewer : nsISupports {
23 21
24 static const char[] IID_STR = NS_ICONTENTVIEWER_IID_STR; 22 static const char[] IID_STR = NS_ICONTENTVIEWER_IID_STR;
25 static const nsIID IID = NS_ICONTENTVIEWER_IID; 23 static const nsIID IID = NS_ICONTENTVIEWER_IID;
26 24
25 extern(System):
27 nsresult Init(nsIWidget * aParentWidget, nsIDeviceContext * aDeviceContext, nsRect * aBounds); 26 nsresult Init(nsIWidget * aParentWidget, nsIDeviceContext * aDeviceContext, nsRect * aBounds);
28 nsresult GetContainer(nsISupports *aContainer); 27 nsresult GetContainer(nsISupports *aContainer);
29 nsresult SetContainer(nsISupports aContainer); 28 nsresult SetContainer(nsISupports aContainer);
30 nsresult LoadStart(nsISupports aDoc); 29 nsresult LoadStart(nsISupports aDoc);
31 nsresult LoadComplete(PRUint32 aStatus); 30 nsresult LoadComplete(PRUint32 aStatus);
61 60
62 const nsIID NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID= 61 const nsIID NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID=
63 {0x51341ed4, 0xa3bf, 0x4fd5, 62 {0x51341ed4, 0xa3bf, 0x4fd5,
64 [ 0xae, 0x17, 0x5f, 0xd3, 0xec, 0x59, 0xdc, 0xab ]}; 63 [ 0xae, 0x17, 0x5f, 0xd3, 0xec, 0x59, 0xdc, 0xab ]};
65 64
66 //extern(System)
67
68 interface nsIContentViewer_MOZILLA_1_8_BRANCH : nsISupports { 65 interface nsIContentViewer_MOZILLA_1_8_BRANCH : nsISupports {
69 66
70 static const char[] IID_STR = NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID_STR; 67 static const char[] IID_STR = NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID_STR;
71 static const nsIID IID = NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID; 68 static const nsIID IID = NS_ICONTENTVIEWER_MOZILLA_1_8_BRANCH_IID;
72 69
70 extern(System):
73 nsresult OpenWithEntry(nsISupports aState, nsISHEntry aSHEntry); 71 nsresult OpenWithEntry(nsISupports aState, nsISHEntry aSHEntry);
74 72
75 } 73 }
76 74