vala r2174 - in trunk: . vapi vapi/packages/gnome-keyring-1



Author: juergbi
Date: Tue Dec 16 00:29:26 2008
New Revision: 2174
URL: http://svn.gnome.org/viewvc/vala?rev=2174&view=rev

Log:
2008-12-16  JÃrg Billeter  <j bitron ch>

	* vapi/packages/gnome-keyring-1/:

	Various delegate parameter fixes, patch by Michael Terry,
	fixes bug 564068

	* vapi/gnome-keyring-1.vapi: regenerated


Modified:
   trunk/ChangeLog
   trunk/vapi/gnome-keyring-1.vapi
   trunk/vapi/packages/gnome-keyring-1/gnome-keyring-1.metadata

Modified: trunk/vapi/gnome-keyring-1.vapi
==============================================================================
--- trunk/vapi/gnome-keyring-1.vapi	(original)
+++ trunk/vapi/gnome-keyring-1.vapi	Tue Dec 16 00:29:26 2008
@@ -25,7 +25,6 @@
 		public void append_uint32 (string name, uint value);
 		public weak GnomeKeyring.AttributeList copy ();
 		public GnomeKeyring.Attribute index (int i);
-		public AttributeList ();
 	}
 	[Compact]
 	[CCode (cheader_filename = "gnome-keyring.h")]
@@ -85,7 +84,7 @@
 		public void* reserved2;
 		public void* reserved3;
 	}
-	[CCode (cheader_filename = "gnome-keyring.h")]
+	[CCode (type_id = "GNOME_KEYRING_TYPE_ATTRIBUTE", cheader_filename = "gnome-keyring.h")]
 	public struct Attribute {
 		public weak string name;
 		public GnomeKeyring.AttributeType type;
@@ -168,11 +167,11 @@
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void cancel_request (void* request);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* change_password (string keyring, string? original, string? password, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* change_password (string keyring, string? original, string? password, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result change_password_sync (string keyring, string? original, string? password);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* create (string keyring_name, string? password, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* create (string keyring_name, string? password, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result create_sync (string keyring_name, string? password);
 	[CCode (cheader_filename = "gnome-keyring.h")]
@@ -182,35 +181,35 @@
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void* @delete (string keyring, GnomeKeyring.OperationDoneCallback callback, void* data, GLib.DestroyNotify destroy_data);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* delete_password (GnomeKeyring.PasswordSchema schema, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify destroy_data, ...);
+	public static void* delete_password (GnomeKeyring.PasswordSchema schema, GnomeKeyring.OperationDoneCallback# callback, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result delete_password_sync (GnomeKeyring.PasswordSchema schema, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result delete_sync (string keyring);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* find_items (GnomeKeyring.ItemType type, GnomeKeyring.AttributeList attributes, GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* find_items (GnomeKeyring.ItemType type, GnomeKeyring.AttributeList attributes, GnomeKeyring.OperationGetListCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result find_items_sync (GnomeKeyring.ItemType type, GnomeKeyring.AttributeList attributes, GLib.List found);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* find_itemsv (GnomeKeyring.ItemType type, GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data, ...);
+	public static void* find_itemsv (GnomeKeyring.ItemType type, GnomeKeyring.OperationGetListCallback# callback, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result find_itemsv_sync (GnomeKeyring.ItemType type, GLib.List found, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* find_network_password (string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* find_network_password (string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, GnomeKeyring.OperationGetListCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result find_network_password_sync (string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, GLib.List results);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* find_password (GnomeKeyring.PasswordSchema schema, GnomeKeyring.OperationGetStringCallback callback, GLib.DestroyNotify destroy_data, ...);
+	public static void* find_password (GnomeKeyring.PasswordSchema schema, GnomeKeyring.OperationGetStringCallback# callback, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result find_password_sync (GnomeKeyring.PasswordSchema schema, out weak string password, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void free_password (string password);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* get_default_keyring (GnomeKeyring.OperationGetStringCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* get_default_keyring (GnomeKeyring.OperationGetStringCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result get_default_keyring_sync (out weak string keyring);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* get_info (string? keyring, GnomeKeyring.OperationGetKeyringInfoCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* get_info (string? keyring, GnomeKeyring.OperationGetKeyringInfoCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result get_info_sync (string? keyring, out weak GnomeKeyring.Info info);
 	[CCode (cheader_filename = "gnome-keyring.h")]
@@ -228,57 +227,57 @@
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void item_ac_set_path_name (GnomeKeyring.AccessControl ac, string value);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_create (string? keyring, GnomeKeyring.ItemType type, string display_name, GnomeKeyring.AttributeList attributes, string secret, bool update_if_exists, GnomeKeyring.OperationGetIntCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_create (string? keyring, GnomeKeyring.ItemType type, string display_name, GnomeKeyring.AttributeList attributes, string secret, bool update_if_exists, GnomeKeyring.OperationGetIntCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_create_sync (string? keyring, GnomeKeyring.ItemType type, string display_name, GnomeKeyring.AttributeList attributes, string secret, bool update_if_exists, uint item_id);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_delete (string? keyring, uint id, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_delete (string? keyring, uint id, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_delete_sync (string? keyring, uint id);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_get_acl (string? keyring, uint id, GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_get_acl (string? keyring, uint id, GnomeKeyring.OperationGetListCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_get_acl_sync (string? keyring, uint id, GLib.List acl);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_get_attributes (string? keyring, uint id, GnomeKeyring.OperationGetAttributesCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_get_attributes (string? keyring, uint id, GnomeKeyring.OperationGetAttributesCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_get_attributes_sync (string? keyring, uint id, out weak GnomeKeyring.AttributeList attributes);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_get_info (string? keyring, uint id, GnomeKeyring.OperationGetItemInfoCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_get_info (string? keyring, uint id, GnomeKeyring.OperationGetItemInfoCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_get_info_full (string? keyring, uint id, uint flags, GnomeKeyring.OperationGetItemInfoCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_get_info_full (string? keyring, uint id, uint flags, GnomeKeyring.OperationGetItemInfoCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_get_info_full_sync (string? keyring, uint id, uint flags, out weak GnomeKeyring.ItemInfo info);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static weak GnomeKeyring.Result? item_get_info_sync (string keyring, uint id, out weak GnomeKeyring.ItemInfo info);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_grant_access_rights (string? keyring, string display_name, string full_path, uint id, GnomeKeyring.AccessType rights, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_grant_access_rights (string? keyring, string display_name, string full_path, uint id, GnomeKeyring.AccessType rights, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_grant_access_rights_sync (string? keyring, string display_name, string full_path, uint id, GnomeKeyring.AccessType rights);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_set_acl (string? keyring, uint id, GLib.List acl, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_set_acl (string? keyring, uint id, GLib.List acl, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_set_acl_sync (string? keyring, uint id, GLib.List acl);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_set_attributes (string? keyring, uint id, GnomeKeyring.AttributeList attributes, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_set_attributes (string? keyring, uint id, GnomeKeyring.AttributeList attributes, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_set_attributes_sync (string? keyring, uint id, GnomeKeyring.AttributeList attributes);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* item_set_info (string? keyring, uint id, GnomeKeyring.ItemInfo info, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* item_set_info (string? keyring, uint id, GnomeKeyring.ItemInfo info, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result item_set_info_sync (string? keyring, uint id, GnomeKeyring.ItemInfo info);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* list_item_ids (string? keyring, GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* list_item_ids (string? keyring, GnomeKeyring.OperationGetListCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result list_item_ids_sync (string? keyring, out GLib.List<uint> ids);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* list_keyring_names (GnomeKeyring.OperationGetListCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* list_keyring_names (GnomeKeyring.OperationGetListCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result list_keyring_names_sync (GLib.List keyrings);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void* @lock (string keyring, GnomeKeyring.OperationDoneCallback callback, void* data, GLib.DestroyNotify destroy_data);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* lock_all (GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* lock_all (GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result lock_all_sync ();
 	[CCode (cheader_filename = "gnome-keyring.h")]
@@ -304,25 +303,25 @@
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static weak string result_to_message (GnomeKeyring.Result res);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* set_default_keyring (string keyring, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* set_default_keyring (string keyring, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result set_default_keyring_sync (string keyring);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* set_info (string? keyring, GnomeKeyring.Info info, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* set_info (string? keyring, GnomeKeyring.Info info, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result set_info_sync (string? keyring, GnomeKeyring.Info info);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* set_network_password (string? keyring, string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, string? password, GnomeKeyring.OperationGetIntCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* set_network_password (string? keyring, string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, string? password, GnomeKeyring.OperationGetIntCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result set_network_password_sync (string? keyring, string? user, string? domain, string? server, string? object, string? protocol, string? authtype, uint port, string? password, uint item_id);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* store_password (GnomeKeyring.PasswordSchema schema, string? keyring, string display_name, string password, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify destroy_data, ...);
+	public static void* store_password (GnomeKeyring.PasswordSchema schema, string? keyring, string display_name, string password, GnomeKeyring.OperationDoneCallback# callback, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result store_password_sync (GnomeKeyring.PasswordSchema schema, string keyring, string display_name, string password, ...);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static void string_list_free (GLib.List strings);
 	[CCode (cheader_filename = "gnome-keyring.h")]
-	public static void* unlock (string? keyring, string? password, GnomeKeyring.OperationDoneCallback callback, GLib.DestroyNotify? destroy_data);
+	public static void* unlock (string? keyring, string? password, GnomeKeyring.OperationDoneCallback# callback);
 	[CCode (cheader_filename = "gnome-keyring.h")]
 	public static GnomeKeyring.Result unlock_sync (string? keyring, string? password);
 }

Modified: trunk/vapi/packages/gnome-keyring-1/gnome-keyring-1.metadata
==============================================================================
--- trunk/vapi/packages/gnome-keyring-1/gnome-keyring-1.metadata	(original)
+++ trunk/vapi/packages/gnome-keyring-1/gnome-keyring-1.metadata	Tue Dec 16 00:29:26 2008
@@ -3,72 +3,93 @@
 #Simple password api
 gnome_keyring_store_password ellipsis="1"
 gnome_keyring_store_password.keyring nullable="1"
+gnome_keyring_store_password.callback transfer_ownership="1"
 gnome_keyring_store_password.data hidden="1"
+gnome_keyring_store_password.destroy_data hidden="1"
 gnome_keyring_store_password_sync ellipsis="1"
 gnome_keyring_find_password ellipsis="1"
 gnome_keyring_find_password.keyring nullable="1"
+gnome_keyring_find_password.callback transfer_ownership="1"
 gnome_keyring_find_password.data hidden="1"
+gnome_keyring_find_password.destroy_data hidden="1"
 gnome_keyring_find_password_sync ellipsis="1"
 gnome_keyring_find_password_sync.password is_out="1"
 gnome_keyring_delete_password ellipsis="1"
 gnome_keyring_delete_password.keyring nullable="1"
+gnome_keyring_delete_password.callback transfer_ownership="1"
 gnome_keyring_delete_password.data hidden="1"
+gnome_keyring_delete_password.destroy_data hidden="1"
 gnome_keyring_delete_password_sync ellipsis="1"
 
 #keyrings
+gnome_keyring_ lock callback transfer_ownership="1"
 gnome_keyring_ lock data hidden="1"
-gnome_keyring_ lock destroy_data nullable="1"
+gnome_keyring_ lock destroy_data hidden="1"
 gnome_keyring_ lock keyring nullable="1"
 gnome_keyring_lock_sync.keyring nullable="1"
+gnome_keyring_lock_all.callback transfer_ownership="1"
 gnome_keyring_lock_all.data hidden="1"
-gnome_keyring_lock_all.destroy_data nullable="1"
+gnome_keyring_lock_all.destroy_data hidden="1"
+gnome_keyring_set_default_keyring.callback transfer_ownership="1"
 gnome_keyring_set_default_keyring.data hidden="1"
-gnome_keyring_set_default_keyring.destroy_data nullable="1"
+gnome_keyring_set_default_keyring.destroy_data hidden="1"
+gnome_keyring_set_info.callback transfer_ownership="1"
 gnome_keyring_set_info.data hidden="1"
-gnome_keyring_set_info.destroy_data nullable="1"
+gnome_keyring_set_info.destroy_data hidden="1"
 gnome_keyring_set_info.keyring nullable="1"
 gnome_keyring_set_info_sync.keyring nullable="1"
+gnome_keyring_unlock.callback transfer_ownership="1"
 gnome_keyring_unlock.data hidden="1"
-gnome_keyring_unlock.destroy_data nullable="1"
+gnome_keyring_unlock.destroy_data hidden="1"
 gnome_keyring_unlock.keyring nullable="1"
 gnome_keyring_unlock.password nullable="1"
 gnome_keyring_unlock_sync.keyring nullable="1"
 gnome_keyring_unlock_sync.password nullable="1"
+gnome_keyring_get_default_keyring.callback transfer_ownership="1"
 gnome_keyring_get_default_keyring.data hidden="1"
-gnome_keyring_get_default_keyring.destroy_data nullable="1"
+gnome_keyring_get_default_keyring.destroy_data hidden="1"
+gnome_keyring_get_info.callback transfer_ownership="1"
 gnome_keyring_get_info.data hidden="1"
-gnome_keyring_get_info.destroy_data nullable="1"
+gnome_keyring_get_info.destroy_data hidden="1"
 gnome_keyring_get_info.keyring nullable="1"
 gnome_keyring_get_info_sync.keyring nullable="1"
+gnome_keyring_change_password.callback transfer_ownership="1"
 gnome_keyring_change_password.data hidden="1"
-gnome_keyring_change_password.destroy_data nullable="1"
+gnome_keyring_change_password.destroy_data hidden="1"
 gnome_keyring_change_password.original nullable="1"
 gnome_keyring_change_password.password nullable="1"
 gnome_keyring_change_password_sync.original nullable="1"
 gnome_keyring_change_password_sync.password nullable="1"
+gnome_keyring_create.callback transfer_ownership="1"
 gnome_keyring_create.data hidden="1"
-gnome_keyring_create.destroy_data nullable="1"
+gnome_keyring_create.destroy_data hidden="1"
 gnome_keyring_create.password nullable="1"
 gnome_keyring_create_sync.password nullable="1"
+gnome_keyring_ delete callback transfer_ownership="1"
 gnome_keyring_ delete data hidden="1"
-gnome_keyring_ delete destroy_data nullable="1"
+gnome_keyring_ delete destroy_data hidden="1"
+gnome_keyring_list_item_ids.callback transfer_ownership="1"
 gnome_keyring_list_item_ids.data hidden="1"
-gnome_keyring_list_item_ids.destroy_data nullable="1"
+gnome_keyring_list_item_ids.destroy_data hidden="1"
 gnome_keyring_list_item_ids.keyring nullable="1"
 gnome_keyring_list_item_ids_sync.keyring nullable="1"
 gnome_keyring_list_item_ids_sync.ids type_arguments="uint" is_out="1" takes_ownership="1"
+gnome_keyring_list_keyring_names.callback transfer_ownership="1"
 gnome_keyring_list_keyring_names.data hidden="1"
-gnome_keyring_list_keyring_names.destroy_data nullable="1"
+gnome_keyring_list_keyring_names.destroy_data hidden="1"
 
 #find item api
+gnome_keyring_find_items.callback transfer_ownership="1"
 gnome_keyring_find_items.data hidden="1"
-gnome_keyring_find_items.destroy_data nullable="1"
+gnome_keyring_find_items.destroy_data hidden="1"
 gnome_keyring_find_itemsv ellipsis="1"
+gnome_keyring_find_itemsv.callback transfer_ownership="1"
 gnome_keyring_find_itemsv.data hidden="1"
-gnome_keyring_find_itemsv.destroy_data nullable="1"
+gnome_keyring_find_itemsv.destroy_data hidden="1"
 gnome_keyring_find_itemsv_sync ellipsis="1"
 
 #network-item api
+gnome_keyring_set_network_password.callback transfer_ownership="1"
 gnome_keyring_set_network_password.data hidden="1"
 gnome_keyring_set_network_password.keyring nullable="1"
 gnome_keyring_set_network_password.user nullable="1"
@@ -78,8 +99,7 @@
 gnome_keyring_set_network_password.protocol nullable="1"
 gnome_keyring_set_network_password.authtype nullable="1"
 gnome_keyring_set_network_password.password nullable="1"
-gnome_keyring_set_network_password.destroy_data nullable="1"
-gnome_keyring_set_network_password.data hidden="1"
+gnome_keyring_set_network_password.destroy_data hidden="1"
 gnome_keyring_set_network_password_sync.keyring nullable="1"
 gnome_keyring_set_network_password_sync.user nullable="1"
 gnome_keyring_set_network_password_sync.domain nullable="1"
@@ -88,6 +108,7 @@
 gnome_keyring_set_network_password_sync.protocol nullable="1"
 gnome_keyring_set_network_password_sync.authtype nullable="1"
 gnome_keyring_set_network_password_sync.password nullable="1"
+gnome_keyring_find_network_password.callback transfer_ownership="1"
 gnome_keyring_find_network_password.data hidden="1"
 gnome_keyring_find_network_password.user nullable="1"
 gnome_keyring_find_network_password.domain nullable="1"
@@ -95,7 +116,7 @@
 gnome_keyring_find_network_password.object nullable="1"
 gnome_keyring_find_network_password.protocol nullable="1"
 gnome_keyring_find_network_password.authtype nullable="1"
-gnome_keyring_find_network_password.destroy_data nullable="1"
+gnome_keyring_find_network_password.destroy_data hidden="1"
 gnome_keyring_find_network_password_sync.user nullable="1"
 gnome_keyring_find_network_password_sync.domain nullable="1"
 gnome_keyring_find_network_password_sync.server nullable="1"
@@ -105,47 +126,53 @@
 
 #item api
 GnomeKeyringAttribute is_value_type="1"
+gnome_keyring_item_create.callback transfer_ownership="1"
 gnome_keyring_item_create.data hidden="1"
 gnome_keyring_item_create.keyring nullable="1"
-gnome_keyring_item_create.destroy_data nullable="1"
+gnome_keyring_item_create.destroy_data hidden="1"
 gnome_keyring_item_create_sync.keyring nullable="1"
+gnome_keyring_item_delete.callback transfer_ownership="1"
 gnome_keyring_item_delete.data hidden="1"
 gnome_keyring_item_delete.keyring nullable="1"
-gnome_keyring_item_delete.destroy_data nullable="1"
+gnome_keyring_item_delete.destroy_data hidden="1"
 gnome_keyring_item_delete_sync.keyring nullable="1"
+gnome_keyring_item_get_acl.callback transfer_ownership="1"
 gnome_keyring_item_get_acl.data hidden="1"
 gnome_keyring_item_get_acl.keyring nullable="1"
-gnome_keyring_item_get_acl.destroy_data nullable="1"
+gnome_keyring_item_get_acl.destroy_data hidden="1"
 gnome_keyring_item_get_acl_sync.keyring nullable="1"
+gnome_keyring_item_set_acl.callback transfer_ownership="1"
 gnome_keyring_item_set_acl.data hidden="1"
 gnome_keyring_item_set_acl.keyring nullable="1"
-gnome_keyring_item_set_acl.destroy_data nullable="1"
+gnome_keyring_item_set_acl.destroy_data hidden="1"
 gnome_keyring_item_set_acl_sync.keyring nullable="1"
+gnome_keyring_item_get_attributes.callback transfer_ownership="1"
 gnome_keyring_item_get_attributes.data hidden="1"
 gnome_keyring_item_get_attributes.keyring nullable="1"
-gnome_keyring_item_get_attributes.destroy_data nullable="1"
+gnome_keyring_item_get_attributes.destroy_data hidden="1"
 gnome_keyring_item_get_attributes_sync.keyring nullable="1"
+gnome_keyring_item_set_attributes.callback transfer_ownership="1"
 gnome_keyring_item_set_attributes.data hidden="1"
 gnome_keyring_item_set_attributes.keyring nullable="1"
-gnome_keyring_item_set_attributes.destroy_data nullable="1"
+gnome_keyring_item_set_attributes.destroy_data hidden="1"
 gnome_keyring_item_set_attributes_sync.keyring nullable="1"
+gnome_keyring_item_get_info.callback transfer_ownership="1"
 gnome_keyring_item_get_info.data hidden="1"
 gnome_keyring_item_get_info.keyring nullable="1"
-gnome_keyring_item_get_info.destroy_data nullable="1"
+gnome_keyring_item_get_info.destroy_data hidden="1"
 gnome_keyring_item_get_info_sync nullable="1"
+gnome_keyring_item_get_info_full.callback transfer_ownership="1"
 gnome_keyring_item_get_info_full.data hidden="1"
 gnome_keyring_item_get_info_full.keyring nullable="1"
-gnome_keyring_item_get_info_full.destroy_data nullable="1"
+gnome_keyring_item_get_info_full.destroy_data hidden="1"
 gnome_keyring_item_get_info_full_sync.keyring nullable="1"
-gnome_keyring_item_grant_access_rights.data hidden="1"
-gnome_keyring_item_set_acl.data hidden="1"
-gnome_keyring_item_set_attributes.data hidden="1"
+gnome_keyring_item_set_info.callback transfer_ownership="1"
 gnome_keyring_item_set_info.data hidden="1"
 gnome_keyring_item_set_info.keyring nullable="1"
-gnome_keyring_item_set_info.destroy_data nullable="1"
+gnome_keyring_item_set_info.destroy_data hidden="1"
 gnome_keyring_item_set_info_sync.keyring nullable="1"
+gnome_keyring_item_grant_access_rights.callback transfer_ownership="1"
 gnome_keyring_item_grant_access_rights.data hidden="1"
 gnome_keyring_item_grant_access_rights.keyring nullable="1"
-gnome_keyring_item_grant_access_rights.destroy_data nullable="1"
+gnome_keyring_item_grant_access_rights.destroy_data hidden="1"
 gnome_keyring_item_grant_access_rights_sync.keyring nullable="1"
-gnome_keyring_item_grant_access_rights_sync.destroy_data nullable="1"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]