e357559582
eslint cannot figure out that those symbols are used from other modules via imports, so they trigger unused-variable errors. To fix, explicitly mark those symbols as exported. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/627
17 lines
697 B
JavaScript
17 lines
697 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
/* exported PermissionStore */
|
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
const PermissionStoreIface = loadInterfaceXML('org.freedesktop.impl.portal.PermissionStore');
|
|
const PermissionStoreProxy = Gio.DBusProxy.makeProxyWrapper(PermissionStoreIface);
|
|
|
|
function PermissionStore(initCallback, cancellable) {
|
|
return new PermissionStoreProxy(Gio.DBus.session,
|
|
'org.freedesktop.impl.portal.PermissionStore',
|
|
'/org/freedesktop/impl/portal/PermissionStore',
|
|
initCallback, cancellable);
|
|
}
|