9a3913d4a0
This is another bit where we've made good progress, and just need a final push to complete the transition. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2866>
21 lines
695 B
JavaScript
21 lines
695 B
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
import Gio from 'gi://Gio';
|
|
|
|
import {loadInterfaceXML} from './fileUtils.js';
|
|
|
|
const PermissionStoreIface = loadInterfaceXML('org.freedesktop.impl.portal.PermissionStore');
|
|
const PermissionStoreProxy = Gio.DBusProxy.makeProxyWrapper(PermissionStoreIface);
|
|
|
|
/**
|
|
* @param {Function} initCallback
|
|
* @param {Gio.Cancellable} cancellable
|
|
* @returns {Gio.DBusProxy}
|
|
*/
|
|
export function PermissionStore(initCallback, cancellable) {
|
|
return new PermissionStoreProxy(Gio.DBus.session,
|
|
'org.freedesktop.impl.portal.PermissionStore',
|
|
'/org/freedesktop/impl/portal/PermissionStore',
|
|
initCallback, cancellable);
|
|
}
|