зеркало из https://github.com/mozilla/gecko-dev.git
88 строки
2.6 KiB
JavaScript
88 строки
2.6 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";
|
|
|
|
const { Ci } = require("chrome");
|
|
const protocol = require("devtools/shared/protocol");
|
|
const Services = require("Services");
|
|
const { preferenceSpec } = require("devtools/shared/specs/preference");
|
|
|
|
/**
|
|
* Normally the preferences are set using Services.prefs, but this actor allows
|
|
* a debugger client to set preferences on the debuggee. This is particularly useful
|
|
* when remote debugging, and the preferences should persist to the remote target
|
|
* and not to the client. If used for a local target, it effectively behaves the same
|
|
* as using Services.prefs.
|
|
*
|
|
* This actor is used as a global-scoped actor, targeting the entire browser, not an
|
|
* individual tab.
|
|
*/
|
|
var PreferenceActor = protocol.ActorClassWithSpec(preferenceSpec, {
|
|
typeName: "preference",
|
|
|
|
getBoolPref: function(name) {
|
|
return Services.prefs.getBoolPref(name);
|
|
},
|
|
|
|
getCharPref: function(name) {
|
|
return Services.prefs.getCharPref(name);
|
|
},
|
|
|
|
getIntPref: function(name) {
|
|
return Services.prefs.getIntPref(name);
|
|
},
|
|
|
|
getAllPrefs: function() {
|
|
const prefs = {};
|
|
Services.prefs.getChildList("").forEach(function(name, index) {
|
|
// append all key/value pairs into a huge json object.
|
|
try {
|
|
let value;
|
|
switch (Services.prefs.getPrefType(name)) {
|
|
case Ci.nsIPrefBranch.PREF_STRING:
|
|
value = Services.prefs.getCharPref(name);
|
|
break;
|
|
case Ci.nsIPrefBranch.PREF_INT:
|
|
value = Services.prefs.getIntPref(name);
|
|
break;
|
|
case Ci.nsIPrefBranch.PREF_BOOL:
|
|
value = Services.prefs.getBoolPref(name);
|
|
break;
|
|
default:
|
|
}
|
|
prefs[name] = {
|
|
value: value,
|
|
hasUserValue: Services.prefs.prefHasUserValue(name),
|
|
};
|
|
} catch (e) {
|
|
// pref exists but has no user or default value
|
|
}
|
|
});
|
|
return prefs;
|
|
},
|
|
|
|
setBoolPref: function(name, value) {
|
|
Services.prefs.setBoolPref(name, value);
|
|
Services.prefs.savePrefFile(null);
|
|
},
|
|
|
|
setCharPref: function(name, value) {
|
|
Services.prefs.setCharPref(name, value);
|
|
Services.prefs.savePrefFile(null);
|
|
},
|
|
|
|
setIntPref: function(name, value) {
|
|
Services.prefs.setIntPref(name, value);
|
|
Services.prefs.savePrefFile(null);
|
|
},
|
|
|
|
clearUserPref: function(name) {
|
|
Services.prefs.clearUserPref(name);
|
|
Services.prefs.savePrefFile(null);
|
|
},
|
|
});
|
|
|
|
exports.PreferenceActor = PreferenceActor;
|