mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
/* 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";
|
|
|
|
this.EXPORTED_SYMBOLS = ["MockPolicyListener"];
|
|
|
|
const {utils: Cu} = Components;
|
|
|
|
Cu.import("resource://services-common/log4moz.js");
|
|
|
|
|
|
this.MockPolicyListener = function MockPolicyListener() {
|
|
this._log = Log4Moz.repository.getLogger("HealthReport.Testing.MockPolicyListener");
|
|
this._log.level = Log4Moz.Level["Debug"];
|
|
|
|
this.requestDataSubmissionCount = 0;
|
|
this.lastDataRequest = null;
|
|
|
|
this.notifyUserCount = 0;
|
|
this.lastNotifyRequest = null;
|
|
}
|
|
|
|
MockPolicyListener.prototype = {
|
|
onRequestDataSubmission: function onRequestDataSubmission(request) {
|
|
this._log.info("onRequestDataSubmission invoked.");
|
|
this.requestDataSubmissionCount++;
|
|
this.lastDataRequest = request;
|
|
},
|
|
|
|
onNotifyDataPolicy: function onNotifyDataPolicy(request) {
|
|
this._log.info("onNotifyUser invoked.");
|
|
this.notifyUserCount++;
|
|
this.lastNotifyRequest = request;
|
|
},
|
|
};
|