aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-profile-utils.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2013-03-09 20:57:09 +0800
committerCarlos Garcia Campos <carlosgc@gnome.org>2013-03-12 17:01:34 +0800
commit2499031072e275e68ad8dc1cb9bd0a53397a5e5a (patch)
treeb94479df9e1470d6855a7bbb4e5b2e0b37fcfa19 /lib/ephy-profile-utils.h
parent78b70aa84bb94f5097d40ffbb461aefcbbaeb979 (diff)
downloadgsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar.gz
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar.bz2
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar.lz
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar.xz
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.tar.zst
gsoc2013-epiphany-2499031072e275e68ad8dc1cb9bd0a53397a5e5a.zip
lib: Move auth data query/store methods from ephy-profile-utils to a new file
Move to ephy-form-auth-data and renamed accordingly.
Diffstat (limited to 'lib/ephy-profile-utils.h')
-rw-r--r--lib/ephy-profile-utils.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/ephy-profile-utils.h b/lib/ephy-profile-utils.h
index ec3905bd7..72d32e494 100644
--- a/lib/ephy-profile-utils.h
+++ b/lib/ephy-profile-utils.h
@@ -20,15 +20,7 @@
#ifndef EPHY_PROFILE_UTILS_H
#define EPHY_PROFILE_UTILS_H
-#define SECRET_API_SUBJECT_TO_CHANGE
-
#include <glib.h>
-#include <libsecret/secret.h>
-
-#define URI_KEY "uri"
-#define FORM_USERNAME_KEY "form_username"
-#define FORM_PASSWORD_KEY "form_password"
-#define USERNAME_KEY "username"
#define EPHY_PROFILE_MIGRATION_VERSION 9
@@ -42,29 +34,4 @@ gboolean ephy_profile_utils_set_migration_version (int version);
gboolean ephy_profile_utils_do_migration (const char *profile_directory, int test_to_run, gboolean debug);
-void _ephy_profile_utils_store_form_auth_data (const char *uri,
- const char *form_username,
- const char *form_password,
- const char *username,
- const char *password,
- GAsyncReadyCallback callback,
- gpointer userdata);
-
-gboolean _ephy_profile_utils_store_form_auth_data_finish (GAsyncResult *result,
- GError **error);
-
-typedef void (*EphyQueryFormDataCallback) (const char *username, const char *password, gpointer user_data);
-
-void
-_ephy_profile_utils_query_form_auth_data (const char *uri,
- const char *form_username,
- const char *form_password,
- EphyQueryFormDataCallback callback,
- gpointer data,
- GDestroyNotify destroy_data);
-
-const SecretSchema *ephy_profile_get_form_password_schema (void) G_GNUC_CONST;
-
-#define EPHY_FORM_PASSWORD_SCHEMA ephy_profile_get_form_password_schema ()
-
#endif