2014-05-21 05:27:24 +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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2019-07-15 20:22:45 +03:00
|
|
|
function SlowScriptDebug() {}
|
2014-05-21 05:27:24 +04:00
|
|
|
|
|
|
|
SlowScriptDebug.prototype = {
|
|
|
|
classDescription: "Slow script debug handler",
|
2018-04-23 06:55:06 +03:00
|
|
|
QueryInterface: ChromeUtils.generateQI([Ci.nsISlowScriptDebug]),
|
2014-05-21 05:27:24 +04:00
|
|
|
|
2019-07-15 20:22:45 +03:00
|
|
|
get activationHandler() {
|
|
|
|
return this._activationHandler;
|
|
|
|
},
|
|
|
|
set activationHandler(cb) {
|
|
|
|
return (this._activationHandler = cb);
|
|
|
|
},
|
2015-01-17 05:34:47 +03:00
|
|
|
|
2019-07-15 20:22:45 +03:00
|
|
|
get remoteActivationHandler() {
|
|
|
|
return this._remoteActivationHandler;
|
|
|
|
},
|
|
|
|
set remoteActivationHandler(cb) {
|
|
|
|
return (this._remoteActivationHandler = cb);
|
|
|
|
},
|
2014-05-21 05:27:24 +04:00
|
|
|
};
|
|
|
|
|
2019-01-30 22:42:53 +03:00
|
|
|
var EXPORTED_SYMBOLS = ["SlowScriptDebug"];
|