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

« back to all changes in this revision

Viewing changes to src/goabackend/goawindowsliveprovider.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-08-20 22:37:44 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120820223744-ndi1s9124mef09ak
Tags: 3.5.90-0ubuntu1
* New upstream release.
* debian/control.in:
  - Build-depend on krb5-config, libgcr-3-dev, and libkrb5-dev
* debian/rules:
  - Enable Kerberos provider
* debian/libgoa-1.0-0.symbols: Added new symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  return g_strdup (_("Windows Live"));
83
83
}
84
84
 
85
 
static GIcon *
86
 
get_provider_icon (GoaProvider *provider,
87
 
                   GoaObject   *object)
88
 
{
89
 
  return g_themed_icon_new_with_default_fallbacks ("goa-account-msn");
90
 
}
91
 
 
92
85
static const gchar *
93
86
get_authorization_uri (GoaOAuth2Provider *provider)
94
87
{
270
263
              GoaObjectSkeleton   *object,
271
264
              GKeyFile            *key_file,
272
265
              const gchar         *group,
 
266
              GDBusConnection     *connection,
273
267
              gboolean             just_added,
274
268
              GError             **error)
275
269
{
287
281
                                                                              object,
288
282
                                                                              key_file,
289
283
                                                                              group,
 
284
                                                                              connection,
290
285
                                                                              just_added,
291
286
                                                                              error))
292
287
    goto out;
414
409
  provider_class = GOA_PROVIDER_CLASS (klass);
415
410
  provider_class->get_provider_type          = get_provider_type;
416
411
  provider_class->get_provider_name          = get_provider_name;
417
 
  provider_class->get_provider_icon          = get_provider_icon;
418
412
  provider_class->build_object               = build_object;
419
413
  provider_class->show_account               = show_account;
420
414
  provider_class->get_credentials_generation = get_credentials_generation;