summaryrefslogtreecommitdiff
path: root/rest/rest-proxy-call-private.h
Commit message (Collapse)AuthorAgeFilesLines
* Move RestProxyCallPrivate to rest-proxy-call.cChristophe Fergeau2014-09-031-26/+0
| | | | | | | | It was in a separate rest-proxy-call.h header which allowed derived classes to access RestProxyCall private data without any control. Better to go through explicit methods to do that. https://bugzilla.gnome.org/show_bug.cgi?id=735919
* oauth: Make sure RestProxyCall::url is set before using itChristophe Fergeau2014-09-031-0/+2
| | | | | | | | | | | | The oauth "prepare" step needs RestProxyCall::url to be set, but since commit c66b6d this is only set after the "prepare" and "serialize_headers" methods have been called. As it's better if OAuthProxyCall do not directly access RestProxyCall private data, this commit adds a getter to RestProxyCall which will be used to make sure RestProxyCall::url is set when OAuthProxyCall::prepare needs it. https://bugzilla.gnome.org/show_bug.cgi?id=708359
* call: disconnect GCancellable 'cancel' signalAlban Crequy2013-06-171-0/+3
| | | | | | | | Without this fix, the call object could be freed before any cancellation. But the 'cancel' callback should not be executed on a freed object. https://bugzilla.gnome.org/show_bug.cgi?id=702483
* Introduce rest_proxy_call_upload to provide progress feedback.Eitan Isaacson2011-04-131-0/+1
|
* proxy-call: Add first pass at continuous call modeRob Bradford2010-09-021-0/+1
|
* Port the proxies to use RestParamRoss Burton2010-07-081-1/+2
|
* Move the call's URL to the private struct so that subclasses can see it in ↵Ross Burton2009-04-081-0/+2
| | | | prepare()
* Split the RestProxyCall private struct into a separate header for subclassesRoss Burton2009-04-081-0/+52