2014-06-25 09:12:07 +04:00
|
|
|
// -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
|
2013-07-10 06:45:07 +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/.
|
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["RemoteSecurityUI"];
|
|
|
|
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
2016-12-31 05:47:25 +03:00
|
|
|
function RemoteSecurityUI() {
|
2013-07-10 06:45:07 +04:00
|
|
|
this._SSLStatus = null;
|
2013-09-06 21:10:11 +04:00
|
|
|
this._state = 0;
|
2013-07-10 06:45:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
RemoteSecurityUI.prototype = {
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsISSLStatusProvider, Ci.nsISecureBrowserUI]),
|
|
|
|
|
|
|
|
// nsISSLStatusProvider
|
|
|
|
get SSLStatus() { return this._SSLStatus; },
|
|
|
|
|
2013-09-06 21:10:11 +04:00
|
|
|
// nsISecureBrowserUI
|
|
|
|
get state() { return this._state; },
|
|
|
|
get tooltipText() { return ""; },
|
2013-07-10 06:45:07 +04:00
|
|
|
|
2016-12-30 02:34:54 +03:00
|
|
|
_update(aStatus, aState) {
|
2013-09-06 21:10:11 +04:00
|
|
|
this._SSLStatus = aStatus;
|
|
|
|
this._state = aState;
|
2013-07-10 06:45:07 +04:00
|
|
|
}
|
|
|
|
};
|