aboutsummaryrefslogtreecommitdiffstats
path: root/modules/online-accounts/camel-sasl-xoauth.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-04-17 01:51:06 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-04-17 07:00:26 +0800
commitd9fc5e4912aabfd8db5a81ea9e22c2bba77a632f (patch)
tree2c16a43a7e54957b65f64c74f3a1534810ec61c7 /modules/online-accounts/camel-sasl-xoauth.h
parentf6d4d6db614917b9c69a6ef540c4aabfa4486f6a (diff)
downloadgsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar.gz
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar.bz2
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar.lz
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar.xz
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.tar.zst
gsoc2013-evolution-d9fc5e4912aabfd8db5a81ea9e22c2bba77a632f.zip
Remove backward-compatibility cruft for goa-1.0 < 3.8.
In particular, GOA's Google provider uses OAuth 2.0 now, so we can drop the OAuth 1.0a support in CamelSaslXOAuth which was GMail-specific, and with it the entire "online-accounts" module in Evolution. Evolution no longer links to libgoa-1.0 at all.
Diffstat (limited to 'modules/online-accounts/camel-sasl-xoauth.h')
-rw-r--r--modules/online-accounts/camel-sasl-xoauth.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/modules/online-accounts/camel-sasl-xoauth.h b/modules/online-accounts/camel-sasl-xoauth.h
deleted file mode 100644
index 3e78547e1b..0000000000
--- a/modules/online-accounts/camel-sasl-xoauth.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * camel-sasl-xoauth.h
- *
- * 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 of the License, or (at your option) version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with the program; if not, see <http://www.gnu.org/licenses/>
- *
- */
-
-#ifndef CAMEL_SASL_XOAUTH_H
-#define CAMEL_SASL_XOAUTH_H
-
-#include <camel/camel.h>
-
-/* Standard GObject macros */
-#define CAMEL_TYPE_SASL_XOAUTH \
- (camel_sasl_xoauth_get_type ())
-#define CAMEL_SASL_XOAUTH(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST \
- ((obj), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuth))
-#define CAMEL_SASL_XOAUTH_CLASS(cls) \
- (G_TYPE_CHECK_CLASS_CAST \
- ((cls), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuthClass))
-#define CAMEL_IS_SASL_XOAUTH(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE \
- ((obj), CAMEL_TYPE_SASL_XOAUTH))
-#define CAMEL_IS_SASL_XOAUTH_CLASS(cls) \
- (G_TYPE_CHECK_CLASS_TYPE \
- ((cls), CAMEL_TYPE_SASL_XOAUTH))
-#define CAMEL_SASL_XOAUTH_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS \
- ((obj), CAMEL_TYPE_SASL_XOAUTH, CamelSaslXOAuthClass))
-
-G_BEGIN_DECLS
-
-typedef struct _CamelSaslXOAuth CamelSaslXOAuth;
-typedef struct _CamelSaslXOAuthClass CamelSaslXOAuthClass;
-typedef struct _CamelSaslXOAuthPrivate CamelSaslXOAuthPrivate;
-
-struct _CamelSaslXOAuth {
- CamelSasl parent;
- CamelSaslXOAuthPrivate *priv;
-};
-
-struct _CamelSaslXOAuthClass {
- CamelSaslClass parent_class;
-};
-
-GType camel_sasl_xoauth_get_type (void);
-void camel_sasl_xoauth_type_register (GTypeModule *type_module);
-
-G_END_DECLS
-
-#endif /* CAMEL_SASL_XOAUTH_H */