diff options
author | Stef Walter <stefw@gnome.org> | 2012-07-06 09:01:20 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-07-06 09:27:05 +0200 |
commit | 7098b856b79de5f2234d98a203eb62b1d695a4d5 (patch) | |
tree | fe7e4f445c7f2db9e556dced095c81c577bae7a8 /library/secret-service.h | |
parent | 3cb0d8047da1bff2eb7286eef014ff8948c99333 (diff) | |
download | libsecret-7098b856b79de5f2234d98a203eb62b1d695a4d5.tar.gz |
Rename the functions that operate on a dbus item path
* They all contain '_dbus_path' in their name
* Move secret_service_get_session_path() to the paths functionality
* Move the secret_collection_new() and secret_item_new() functionality
to the path based section.
Diffstat (limited to 'library/secret-service.h')
-rw-r--r-- | library/secret-service.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/library/secret-service.h b/library/secret-service.h index b4626be..b2e9e5d 100644 --- a/library/secret-service.h +++ b/library/secret-service.h @@ -122,8 +122,6 @@ SecretServiceFlags secret_service_get_flags (SecretService const gchar * secret_service_get_session_algorithms (SecretService *self); -const gchar * secret_service_get_session_path (SecretService *self); - GList * secret_service_get_collections (SecretService *self); void secret_service_ensure_session (SecretService *self, @@ -131,11 +129,11 @@ void secret_service_ensure_session (SecretService GAsyncReadyCallback callback, gpointer user_data); -const gchar * secret_service_ensure_session_finish (SecretService *self, +gboolean secret_service_ensure_session_finish (SecretService *self, GAsyncResult *result, GError **error); -const gchar * secret_service_ensure_session_sync (SecretService *self, +gboolean secret_service_ensure_session_sync (SecretService *self, GCancellable *cancellable, GError **error); |