75b824d032
js2-mode is no longer developed and we recommend js-mode these days, so switch the modelines to specify that, and make them consistent across all files. https://bugzilla.gnome.org/show_bug.cgi?id=660358
27 lines
721 B
JavaScript
27 lines
721 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
const DBus = imports.dbus;
|
|
const Lang = imports.lang;
|
|
const Shell = imports.gi.Shell;
|
|
const Signals = imports.signals;
|
|
|
|
const FprintManagerIface = {
|
|
name: 'net.reactivated.Fprint.Manager',
|
|
methods: [{ name: 'GetDefaultDevice',
|
|
inSignature: '',
|
|
outSignature: 'o' }]
|
|
};
|
|
|
|
function FprintManager() {
|
|
this._init();
|
|
};
|
|
|
|
FprintManager.prototype = {
|
|
_init: function() {
|
|
DBus.system.proxifyObject(this,
|
|
'net.reactivated.Fprint',
|
|
'/net/reactivated/Fprint/Manager');
|
|
}
|
|
};
|
|
DBus.proxifyPrototype(FprintManager.prototype, FprintManagerIface);
|