js: Use Gjs GTypeName computation for all classes

As per previous commit we can remove the explicit GTypeName definitions
and use gjs auto computation for all the GObject registered classes.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/790
This commit is contained in:
Marco Trevisan (Treviño)
2019-10-28 19:35:33 +01:00
committed by Florian Müllner
parent 91707f4f82
commit 39e6fc9e9d
26 changed files with 34 additions and 73 deletions

View File

@ -134,7 +134,6 @@ var FocusGrabber = class FocusGrabber {
//
// A notification without a policy object will inherit the default one.
var NotificationPolicy = GObject.registerClass({
GTypeName: 'MessageTray_NotificationPolicy',
Properties: {
'enable': GObject.ParamSpec.boolean(
'enable', 'enable', 'enable',
@ -192,7 +191,6 @@ var NotificationPolicy = GObject.registerClass({
});
var NotificationGenericPolicy = GObject.registerClass({
GTypeName: 'MessageTray_NotificationGenericPolicy'
}, class NotificationGenericPolicy extends NotificationPolicy {
_init() {
super._init();
@ -223,7 +221,6 @@ var NotificationGenericPolicy = GObject.registerClass({
});
var NotificationApplicationPolicy = GObject.registerClass({
GTypeName: 'MessageTray_NotificationApplicationPolicy'
}, class NotificationApplicationPolicy extends NotificationPolicy {
_init(id) {
super._init();
@ -350,7 +347,6 @@ var NotificationApplicationPolicy = GObject.registerClass({
//
// [1] https://developer.gnome.org/notification-spec/#markup
var Notification = GObject.registerClass({
GTypeName: 'MessageTray_Notification',
Properties: {
'acknowledged': GObject.ParamSpec.boolean(
'acknowledged', 'acknowledged', 'acknowledged',
@ -733,7 +729,6 @@ class SourceActorWithLabel extends SourceActor {
});
var Source = GObject.registerClass({
GTypeName: 'MessageTray_Source',
Properties: {
'count': GObject.ParamSpec.int(
'count', 'count', 'count',