2000-09-22 08:42:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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 08:42:20 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
interface mozIDOMWindowProxy;
|
2005-06-16 03:52:46 +04:00
|
|
|
interface nsIDOMElement;
|
2013-03-28 09:12:03 +04:00
|
|
|
interface nsIDocShell;
|
2000-09-22 08:42:20 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
[scriptable, uuid(718c662a-f810-4a80-a6c9-0b1810ecade2)]
|
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 21:42:36 +04:00
|
|
|
interface nsISecureBrowserUI : nsISupports
|
2000-09-22 08:42:20 +04:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
void init(in mozIDOMWindowProxy window);
|
2013-03-28 09:12:03 +04:00
|
|
|
void setDocShell(in nsIDocShell docShell);
|
2002-03-20 12:57:35 +03:00
|
|
|
|
2002-05-17 00:57:37 +04:00
|
|
|
readonly attribute unsigned long state;
|
2000-09-22 08:42:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
#define NS_SECURE_BROWSER_UI_CONTRACTID "@mozilla.org/secure_browser_ui;1"
|
|
|
|
%}
|