comparison dwt/internal/mozilla/nsIWebBrowserChromeFocus.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
8 8
9 const nsIID NS_IWEBBROWSERCHROMEFOCUS_IID= 9 const nsIID NS_IWEBBROWSERCHROMEFOCUS_IID=
10 {0xd2206418, 0x1dd1, 0x11b2, 10 {0xd2206418, 0x1dd1, 0x11b2,
11 [ 0x8e, 0x55, 0xac, 0xdd, 0xcd, 0x2b, 0xcf, 0xb8 ]}; 11 [ 0x8e, 0x55, 0xac, 0xdd, 0xcd, 0x2b, 0xcf, 0xb8 ]};
12 12
13 //extern(System)
14
15 interface nsIWebBrowserChromeFocus : nsISupports { 13 interface nsIWebBrowserChromeFocus : nsISupports {
16 14
17 static const char[] IID_STR = NS_IWEBBROWSERCHROMEFOCUS_IID_STR; 15 static const char[] IID_STR = NS_IWEBBROWSERCHROMEFOCUS_IID_STR;
18 static const nsIID IID = NS_IWEBBROWSERCHROMEFOCUS_IID; 16 static const nsIID IID = NS_IWEBBROWSERCHROMEFOCUS_IID;
19 17
18 extern(System):
20 nsresult FocusNextElement(); 19 nsresult FocusNextElement();
21 nsresult FocusPrevElement(); 20 nsresult FocusPrevElement();
22 21
23 } 22 }
24 23