view dwt/internal/mozilla/nsIWebBrowserChromeFocus.d @ 353:7f3013c93a95

Oops... Add new 3.4.1 files
author John Reimer <terminal.node@gmail.com>
date Tue, 04 Nov 2008 21:21:43 -0800
parents 9a4d7706df52
children
line wrap: on
line source

module dwt.internal.mozilla.nsIWebBrowserChromeFocus;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;

const char[] NS_IWEBBROWSERCHROMEFOCUS_IID_STR = "d2206418-1dd1-11b2-8e55-acddcd2bcfb8";

const nsIID NS_IWEBBROWSERCHROMEFOCUS_IID= 
  {0xd2206418, 0x1dd1, 0x11b2, 
    [ 0x8e, 0x55, 0xac, 0xdd, 0xcd, 0x2b, 0xcf, 0xb8 ]};

interface nsIWebBrowserChromeFocus : nsISupports {

  static const char[] IID_STR = NS_IWEBBROWSERCHROMEFOCUS_IID_STR;
  static const nsIID IID = NS_IWEBBROWSERCHROMEFOCUS_IID;

extern(System):
  nsresult FocusNextElement();
  nsresult FocusPrevElement();

}