chromium/third_party/libsecret/libsecret/secret-prompt.h

/* libsecret - GLib wrapper for Secret Service
 *
 * Copyright 2011 Collabora Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 2.1 of the licence or (at
 * your option) any later version.
 *
 * See the included COPYING file for more information.
 *
 * Author: Stef Walter <[email protected]>
 */

#if !defined (__SECRET_INSIDE_HEADER__) && !defined (SECRET_COMPILATION)
#error "Only <libsecret/secret.h> can be included directly."
#endif

#ifndef __SECRET_PROMPT_H__
#define __SECRET_PROMPT_H__

#include <gio/gio.h>

#include "secret-types.h"

G_BEGIN_DECLS

#define SECRET_TYPE_PROMPT
#define SECRET_PROMPT(inst)
#define SECRET_PROMPT_CLASS(class)
#define SECRET_IS_PROMPT(inst)
#define SECRET_IS_PROMPT_CLASS(class)
#define SECRET_PROMPT_GET_CLASS(inst)

SecretPrompt;
SecretPromptClass;
SecretPromptPrivate;

struct _SecretPrompt {};

struct _SecretPromptClass {};

GType               secret_prompt_get_type                  (void) G_GNUC_CONST;

GVariant *          secret_prompt_run                       (SecretPrompt *self,
                                                             const gchar *window_id,
                                                             GCancellable *cancellable,
                                                             const GVariantType *return_type,
                                                             GError **error);

GVariant *          secret_prompt_perform_sync              (SecretPrompt *self,
                                                             const gchar *window_id,
                                                             GCancellable *cancellable,
                                                             const GVariantType *return_type,
                                                             GError **error);

void                secret_prompt_perform                   (SecretPrompt *self,
                                                             const gchar *window_id,
                                                             const GVariantType *return_type,
                                                             GCancellable *cancellable,
                                                             GAsyncReadyCallback callback,
                                                             gpointer user_data);

GVariant *          secret_prompt_perform_finish            (SecretPrompt *self,
                                                             GAsyncResult *result,
                                                             GError **error);

G_END_DECLS

#endif /* __SECRET_PROMPT_H___ */