comparison dwt/internal/mozilla/nsIDocShellTreeOwner.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_IDOCSHELLTREEOWNER_IID= 16 const nsIID NS_IDOCSHELLTREEOWNER_IID=
17 {0x9e508466, 0x5ebb, 0x4618, 17 {0x9e508466, 0x5ebb, 0x4618,
18 [ 0xab, 0xfa, 0x9a, 0xd4, 0x7b, 0xed, 0x0b, 0x2e ]}; 18 [ 0xab, 0xfa, 0x9a, 0xd4, 0x7b, 0xed, 0x0b, 0x2e ]};
19 19
20 //extern(System)
21
22 interface nsIDocShellTreeOwner : nsISupports { 20 interface nsIDocShellTreeOwner : nsISupports {
23 21
24 static const char[] IID_STR = NS_IDOCSHELLTREEOWNER_IID_STR; 22 static const char[] IID_STR = NS_IDOCSHELLTREEOWNER_IID_STR;
25 static const nsIID IID = NS_IDOCSHELLTREEOWNER_IID; 23 static const nsIID IID = NS_IDOCSHELLTREEOWNER_IID;
26 24
25 extern(System):
27 nsresult FindItemWithName(PRUnichar *name, nsIDocShellTreeItem aRequestor, nsIDocShellTreeItem aOriginalRequestor, nsIDocShellTreeItem *_retval); 26 nsresult FindItemWithName(PRUnichar *name, nsIDocShellTreeItem aRequestor, nsIDocShellTreeItem aOriginalRequestor, nsIDocShellTreeItem *_retval);
28 nsresult ContentShellAdded(nsIDocShellTreeItem aContentShell, PRBool aPrimary, PRUnichar *aID); 27 nsresult ContentShellAdded(nsIDocShellTreeItem aContentShell, PRBool aPrimary, PRUnichar *aID);
29 nsresult GetPrimaryContentShell(nsIDocShellTreeItem *aPrimaryContentShell); 28 nsresult GetPrimaryContentShell(nsIDocShellTreeItem *aPrimaryContentShell);
30 nsresult SizeShellTo(nsIDocShellTreeItem shell, PRInt32 cx, PRInt32 cy); 29 nsresult SizeShellTo(nsIDocShellTreeItem shell, PRInt32 cx, PRInt32 cy);
31 nsresult SetPersistence(PRBool aPersistPosition, PRBool aPersistSize, PRBool aPersistSizeMode); 30 nsresult SetPersistence(PRBool aPersistPosition, PRBool aPersistSize, PRBool aPersistSizeMode);
41 40
42 const nsIID NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID= 41 const nsIID NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID=
43 {0x3c2a6927, 0xe923, 0x4ea8, 42 {0x3c2a6927, 0xe923, 0x4ea8,
44 [ 0xbb, 0xda, 0xa3, 0x35, 0xc7, 0x68, 0xce, 0x4e ]}; 43 [ 0xbb, 0xda, 0xa3, 0x35, 0xc7, 0x68, 0xce, 0x4e ]};
45 44
46 //extern(System)
47
48 interface nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH : nsIDocShellTreeOwner { 45 interface nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH : nsIDocShellTreeOwner {
49 46
50 static const char[] IID_STR = NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID_STR; 47 static const char[] IID_STR = NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID_STR;
51 static const nsIID IID = NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID; 48 static const nsIID IID = NS_IDOCSHELLTREEOWNER_MOZILLA_1_8_BRANCH_IID;
52 49
50 extern(System):
53 nsresult ContentShellAdded2(nsIDocShellTreeItem aContentShell, PRBool aPrimary, PRBool aTargetable, nsAString * aID); 51 nsresult ContentShellAdded2(nsIDocShellTreeItem aContentShell, PRBool aPrimary, PRBool aTargetable, nsAString * aID);
54 nsresult ContentShellRemoved(nsIDocShellTreeItem aContentShell); 52 nsresult ContentShellRemoved(nsIDocShellTreeItem aContentShell);
55 53
56 } 54 }
57 55