diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-10-08 09:27:17 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2010-10-08 09:27:17 +0800 |
commit | aaebc7e2323b89aa577d7d724257522fd0407d3f (patch) | |
tree | 06a5b5ea7cccfac8549df19751fcd8254011799f /libempathy | |
parent | 9936a3252f26ddd99e936ad41dc03b1e83eba6ea (diff) | |
download | gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar.gz gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar.bz2 gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar.lz gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar.xz gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.tar.zst gsoc2013-empathy-aaebc7e2323b89aa577d7d724257522fd0407d3f.zip |
Revert changes to empathy-account-settings
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-account-settings.c | 92 | ||||
-rw-r--r-- | libempathy/empathy-account-settings.h | 10 |
2 files changed, 0 insertions, 102 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c index 1f0d35cb8..29ff3f1b7 100644 --- a/libempathy/empathy-account-settings.c +++ b/libempathy/empathy-account-settings.c @@ -76,13 +76,6 @@ struct _EmpathyAccountSettingsPriv gulong managers_ready_id; GSimpleAsyncResult *apply_result; - - gboolean storage; - gboolean attempted_storage_properties; - gchar *storage_provider; - GValue *storage_identifier; - GHashTable *storage_specific_information; - TpStorageRestrictionFlags storage_restrictions; }; static void @@ -111,9 +104,6 @@ static void empathy_account_settings_managers_ready_cb (GObject *obj, GParamSpec *pspec, gpointer user_data); static void empathy_account_settings_check_readyness ( EmpathyAccountSettings *self); -static void empathy_account_settings_got_account_storage (TpProxy *account, - GHashTable *properties, const GError *error, gpointer user_data, - GObject *object); static void empathy_account_settings_set_property (GObject *object, @@ -224,15 +214,6 @@ empathy_account_settings_constructed (GObject *object) empathy_account_settings_account_ready_cb, self); tp_g_signal_connect_object (priv->managers, "notify::ready", G_CALLBACK (empathy_account_settings_managers_ready_cb), object, 0); - - priv->storage = tp_proxy_has_interface_by_id (priv->account, - TP_IFACE_QUARK_ACCOUNT_INTERFACE_STORAGE); - - if (priv->storage) - tp_cli_dbus_properties_call_get_all (priv->account, -1, - TP_IFACE_ACCOUNT_INTERFACE_STORAGE, - empathy_account_settings_got_account_storage, - NULL, NULL, object); } if (G_OBJECT_CLASS ( @@ -369,13 +350,6 @@ empathy_account_settings_finalize (GObject *object) g_free (priv->service); g_free (priv->display_name); g_free (priv->icon_name); - g_free (priv->storage_provider); - - if (priv->storage_identifier != NULL) - tp_g_value_slice_free (priv->storage_identifier); - - if (priv->storage_specific_information != NULL) - g_hash_table_unref (priv->storage_specific_information); if (priv->required_params != NULL) g_array_free (priv->required_params, TRUE); @@ -447,9 +421,6 @@ empathy_account_settings_check_readyness (EmpathyAccountSettings *self) } } - if (priv->storage && !priv->attempted_storage_properties) - return; - g_object_ref (priv->manager); priv->ready = TRUE; @@ -485,43 +456,6 @@ empathy_account_settings_managers_ready_cb (GObject *object, empathy_account_settings_check_readyness (settings); } -static void -empathy_account_settings_got_account_storage (TpProxy *account, - GHashTable *properties, - const GError *error, - gpointer user_data, - GObject *object) -{ - EmpathyAccountSettingsPriv *priv = GET_PRIV (object); - - priv->attempted_storage_properties = TRUE; - - if (error != NULL) - { - DEBUG ("Failed to get Account.Iface.Storage properties: %s", - error->message); - return; - } - - /* Note to the unwary, GetAll() does not returned fully-qualified property - * names as is common for Telepathy APIs */ - priv->storage_provider = g_strdup (tp_asv_get_string (properties, - "StorageProvider")); - - if (!EMP_STR_EMPTY (priv->storage_provider)) - { - priv->storage_identifier = tp_g_value_slice_dup ( - tp_asv_lookup (properties, "StorageIdentifier")); - priv->storage_specific_information = g_hash_table_ref ( - tp_asv_get_boxed (properties, "StorageSpecificInformation", - TP_HASH_TYPE_QUALIFIED_PROPERTY_VALUE_MAP)); - priv->storage_restrictions = tp_asv_get_uint32 (properties, - "StorageRestrictions", NULL); - } - - empathy_account_settings_check_readyness (EMPATHY_ACCOUNT_SETTINGS (object)); -} - EmpathyAccountSettings * empathy_account_settings_new (const gchar *connection_manager, const gchar *protocol, @@ -1450,29 +1384,3 @@ empathy_account_settings_get_tp_protocol (EmpathyAccountSettings *self) return tp_connection_manager_get_protocol (priv->manager, priv->protocol); } - -const char * -empathy_account_settings_get_storage_provider (EmpathyAccountSettings *self) -{ - return GET_PRIV (self)->storage_provider; -} - -const GValue * -empathy_account_settings_get_storage_identifier (EmpathyAccountSettings *self) -{ - return GET_PRIV (self)->storage_identifier; -} - -GHashTable * -empathy_account_settings_get_storage_specific_information ( - EmpathyAccountSettings *self) -{ - return GET_PRIV (self)->storage_specific_information; -} - -TpStorageRestrictionFlags -empathy_account_settings_get_storage_restrictions ( - EmpathyAccountSettings *self) -{ - return GET_PRIV (self)->storage_restrictions; -} diff --git a/libempathy/empathy-account-settings.h b/libempathy/empathy-account-settings.h index 1ce3f53c0..d3276e1a5 100644 --- a/libempathy/empathy-account-settings.h +++ b/libempathy/empathy-account-settings.h @@ -181,16 +181,6 @@ gboolean empathy_account_settings_is_valid (EmpathyAccountSettings *settings); const TpConnectionManagerProtocol * empathy_account_settings_get_tp_protocol ( EmpathyAccountSettings *settings); -const gchar *empathy_account_settings_get_storage_provider ( - EmpathyAccountSettings *self); -const GValue *empathy_account_settings_get_storage_identifier ( - EmpathyAccountSettings *self); -GHashTable *empathy_account_settings_get_storage_specific_information ( - EmpathyAccountSettings *self); -TpStorageRestrictionFlags empathy_account_settings_get_storage_restrictions ( - EmpathyAccountSettings *self); - - G_END_DECLS #endif /* #ifndef __EMPATHY_ACCOUNT_SETTINGS_H__*/ |