~ubuntu-branches/ubuntu/utopic/gnome-online-accounts/utopic

« back to all changes in this revision

Viewing changes to src/goabackend/goabackendenums.h

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Laurent Bigonville, Andreas Henriksson
  • Date: 2014-05-16 11:42:52 UTC
  • mfrom: (1.1.28) (0.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20140516114252-u5ect6mk6ht8i38x
Tags: 3.12.2-1
[ Laurent Bigonville ]
* debian/control.in: Recommends realmd package (Closes: #725965)

[ Andreas Henriksson ]
* New upstream release.
  - Removes chat support from Windows Live provider (XMPP gateway gone).
* Bump Standards-Version to 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
2
/*
3
 
 * Copyright (C) 2011, 2012 Red Hat, Inc.
 
3
 * Copyright (C) 2011, 2012, 2014 Red Hat, Inc.
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
6
6
 * modify it under the terms of the GNU Lesser General Public
13
13
 * Lesser General Public License for more details.
14
14
 *
15
15
 * You should have received a copy of the GNU Lesser General
16
 
 * Public License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
 
16
 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19
17
 *
20
18
 * Authors: David Zeuthen <davidz@redhat.com>
21
19
 *          Debarshi Ray <debarshir@gnome.org>
70
68
 * @GOA_PROVIDER_FEATURE_PHOTOS: Photos storage services (ie. Flickr).
71
69
 * @GOA_PROVIDER_FEATURE_FILES: Files storage services (ie. WebDAV).
72
70
 * @GOA_PROVIDER_FEATURE_TICKETING: Ticketing services (ie. Kerberos).
 
71
 * @GOA_PROVIDER_FEATURE_PRINTERS: Network printing services (e.g. Google Cloud Print).
73
72
 * @GOA_PROVIDER_FEATURE_INVALID: Used for error handling. No provider
74
73
 *   should provide this feature.
75
74
 *
91
90
  GOA_PROVIDER_FEATURE_PHOTOS    = 1 << 7,
92
91
  GOA_PROVIDER_FEATURE_FILES     = 1 << 8,
93
92
  GOA_PROVIDER_FEATURE_TICKETING = 1 << 9,
 
93
  GOA_PROVIDER_FEATURE_READ_LATER= 1 << 10,
 
94
  GOA_PROVIDER_FEATURE_PRINTERS  = 1 << 11,
94
95
  GOA_PROVIDER_FEATURE_INVALID   = 0
95
96
} GoaProviderFeatures;
96
97