2000-09-22 04:42:20 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-09-22 04:42:20 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
interface nsIDOMWindow;
|
2005-06-15 23:52:46 +00:00
|
|
|
interface nsIDOMElement;
|
2013-03-28 05:12:03 +00:00
|
|
|
interface nsIDocShell;
|
2000-09-22 04:42:20 +00:00
|
|
|
|
2013-02-03 01:21:45 +00:00
|
|
|
[scriptable, uuid(62f6c5be-ea8c-4fab-8e5c-d1580b50ec3f)]
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
interface nsISecureBrowserUI : nsISupports
|
2000-09-22 04:42:20 +00:00
|
|
|
{
|
2002-03-20 09:57:35 +00:00
|
|
|
void init(in nsIDOMWindow window);
|
2013-03-28 05:12:03 +00:00
|
|
|
void setDocShell(in nsIDocShell docShell);
|
2002-03-20 09:57:35 +00:00
|
|
|
|
2002-05-16 20:57:37 +00:00
|
|
|
readonly attribute unsigned long state;
|
2000-09-22 04:42:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
#define NS_SECURE_BROWSER_UI_CONTRACTID "@mozilla.org/secure_browser_ui;1"
|
|
|
|
%}
|