diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:39:17 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-03-22 06:39:17 +0100 |
commit | 3253d99365813f2d2ffd05e10cbb8c11f53d746e (patch) | |
tree | 0ab6f04d9051dc4ada1c4f977a01308227767234 /plugins/shotwell-plugin-common.h | |
parent | e69c1b746d63bf794316669471474ab57c8cd40a (diff) |
New upstream version 0.26.0upstream/0.26.0
Diffstat (limited to 'plugins/shotwell-plugin-common.h')
-rw-r--r-- | plugins/shotwell-plugin-common.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/shotwell-plugin-common.h b/plugins/shotwell-plugin-common.h index 731434a..3bcb68a 100644 --- a/plugins/shotwell-plugin-common.h +++ b/plugins/shotwell-plugin-common.h @@ -234,7 +234,6 @@ struct _PublishingRESTSupportGoogleSessionClass { PublishingRESTSupportSessionClass parent_class; gchar* (*get_user_name) (PublishingRESTSupportGoogleSession* self); gchar* (*get_access_token) (PublishingRESTSupportGoogleSession* self); - gchar* (*get_refresh_token) (PublishingRESTSupportGoogleSession* self); void (*deauthenticate) (PublishingRESTSupportGoogleSession* self); }; @@ -245,6 +244,7 @@ struct _PublishingRESTSupportGooglePublisher { struct _PublishingRESTSupportGooglePublisherClass { GObjectClass parent_class; + SpitPublishingAuthenticator* (*get_authenticator) (PublishingRESTSupportGooglePublisher* self); void (*on_login_flow_complete) (PublishingRESTSupportGooglePublisher* self); void (*do_logout) (PublishingRESTSupportGooglePublisher* self); gboolean (*is_running) (PublishingRESTSupportGooglePublisher* self); @@ -381,14 +381,13 @@ gchar* publishing_rest_support_asciify_string (const gchar* s); GType publishing_rest_support_google_session_get_type (void) G_GNUC_CONST; gchar* publishing_rest_support_google_session_get_user_name (PublishingRESTSupportGoogleSession* self); gchar* publishing_rest_support_google_session_get_access_token (PublishingRESTSupportGoogleSession* self); -gchar* publishing_rest_support_google_session_get_refresh_token (PublishingRESTSupportGoogleSession* self); void publishing_rest_support_google_session_deauthenticate (PublishingRESTSupportGoogleSession* self); PublishingRESTSupportGoogleSession* publishing_rest_support_google_session_construct (GType object_type); GType publishing_rest_support_google_publisher_get_type (void) G_GNUC_CONST; PublishingRESTSupportGooglePublisher* publishing_rest_support_google_publisher_construct (GType object_type, SpitPublishingService* service, SpitPublishingPluginHost* host, const gchar* scope); +SpitPublishingAuthenticator* publishing_rest_support_google_publisher_get_authenticator (PublishingRESTSupportGooglePublisher* self); SpitPublishingPluginHost* publishing_rest_support_google_publisher_get_host (PublishingRESTSupportGooglePublisher* self); PublishingRESTSupportGoogleSession* publishing_rest_support_google_publisher_get_session (PublishingRESTSupportGooglePublisher* self); -void publishing_rest_support_google_publisher_start_oauth_flow (PublishingRESTSupportGooglePublisher* self, const gchar* refresh_token); void publishing_rest_support_google_publisher_on_login_flow_complete (PublishingRESTSupportGooglePublisher* self); void publishing_rest_support_google_publisher_do_logout (PublishingRESTSupportGooglePublisher* self); gboolean publishing_rest_support_google_publisher_is_running (PublishingRESTSupportGooglePublisher* self); |