2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIDOMWindow;
|
|
|
|
interface nsIDOMElement;
|
2013-03-27 22:12:03 -07:00
|
|
|
interface nsIDocShell;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-09 20:49:36 -07:00
|
|
|
[scriptable, uuid(e97e5688-add2-4a1d-acae-396d7702e382)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsISecureBrowserUI : nsISupports
|
|
|
|
{
|
|
|
|
void init(in nsIDOMWindow window);
|
2013-03-27 22:12:03 -07:00
|
|
|
void setDocShell(in nsIDocShell docShell);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
readonly attribute unsigned long state;
|
2013-05-09 20:49:36 -07:00
|
|
|
readonly attribute AString tooltipText;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
#define NS_SECURE_BROWSER_UI_CONTRACTID "@mozilla.org/secure_browser_ui;1"
|
|
|
|
%}
|