mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Apply clang-format to all C, C++ and ObjC files (issue #2171)
This commit is contained in:
@@ -33,6 +33,8 @@
|
||||
// by hand. See the translator.README.txt file in the tools directory for
|
||||
// more information.
|
||||
//
|
||||
// $hash=d0ac53d1df275f9ea9cf19a6a07f8dce88f2b151$
|
||||
//
|
||||
|
||||
#ifndef CEF_INCLUDE_CAPI_CEF_URLREQUEST_CAPI_H_
|
||||
#define CEF_INCLUDE_CAPI_CEF_URLREQUEST_CAPI_H_
|
||||
@@ -67,26 +69,26 @@ typedef struct _cef_urlrequest_t {
|
||||
// Returns the request object used to create this URL request. The returned
|
||||
// object is read-only and should not be modified.
|
||||
///
|
||||
struct _cef_request_t* (CEF_CALLBACK *get_request)(
|
||||
struct _cef_request_t*(CEF_CALLBACK* get_request)(
|
||||
struct _cef_urlrequest_t* self);
|
||||
|
||||
///
|
||||
// Returns the client.
|
||||
///
|
||||
struct _cef_urlrequest_client_t* (CEF_CALLBACK *get_client)(
|
||||
struct _cef_urlrequest_client_t*(CEF_CALLBACK* get_client)(
|
||||
struct _cef_urlrequest_t* self);
|
||||
|
||||
///
|
||||
// Returns the request status.
|
||||
///
|
||||
cef_urlrequest_status_t (CEF_CALLBACK *get_request_status)(
|
||||
cef_urlrequest_status_t(CEF_CALLBACK* get_request_status)(
|
||||
struct _cef_urlrequest_t* self);
|
||||
|
||||
///
|
||||
// Returns the request error if status is UR_CANCELED or UR_FAILED, or 0
|
||||
// otherwise.
|
||||
///
|
||||
cef_errorcode_t (CEF_CALLBACK *get_request_error)(
|
||||
cef_errorcode_t(CEF_CALLBACK* get_request_error)(
|
||||
struct _cef_urlrequest_t* self);
|
||||
|
||||
///
|
||||
@@ -94,16 +96,15 @@ typedef struct _cef_urlrequest_t {
|
||||
// Response information will only be available after the upload has completed.
|
||||
// The returned object is read-only and should not be modified.
|
||||
///
|
||||
struct _cef_response_t* (CEF_CALLBACK *get_response)(
|
||||
struct _cef_response_t*(CEF_CALLBACK* get_response)(
|
||||
struct _cef_urlrequest_t* self);
|
||||
|
||||
///
|
||||
// Cancel the request.
|
||||
///
|
||||
void (CEF_CALLBACK *cancel)(struct _cef_urlrequest_t* self);
|
||||
void(CEF_CALLBACK* cancel)(struct _cef_urlrequest_t* self);
|
||||
} cef_urlrequest_t;
|
||||
|
||||
|
||||
///
|
||||
// Create a new URL request. Only GET, POST, HEAD, DELETE and PUT request
|
||||
// functions are supported. Multiple post data elements are not supported and
|
||||
@@ -120,10 +121,10 @@ typedef struct _cef_urlrequest_t {
|
||||
// renderer process' browser will be used.
|
||||
///
|
||||
CEF_EXPORT cef_urlrequest_t* cef_urlrequest_create(
|
||||
struct _cef_request_t* request, struct _cef_urlrequest_client_t* client,
|
||||
struct _cef_request_t* request,
|
||||
struct _cef_urlrequest_client_t* client,
|
||||
struct _cef_request_context_t* request_context);
|
||||
|
||||
|
||||
///
|
||||
// Structure that should be implemented by the cef_urlrequest_t client. The
|
||||
// functions of this structure will be called on the same thread that created
|
||||
@@ -140,9 +141,8 @@ typedef struct _cef_urlrequest_client_t {
|
||||
// cef_urlrequest_t::GetRequestStatus function to determine if the request was
|
||||
// successful or not.
|
||||
///
|
||||
void (CEF_CALLBACK *on_request_complete)(
|
||||
struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request);
|
||||
void(CEF_CALLBACK* on_request_complete)(struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request);
|
||||
|
||||
///
|
||||
// Notifies the client of upload progress. |current| denotes the number of
|
||||
@@ -150,26 +150,31 @@ typedef struct _cef_urlrequest_client_t {
|
||||
// chunked upload is enabled). This function will only be called if the
|
||||
// UR_FLAG_REPORT_UPLOAD_PROGRESS flag is set on the request.
|
||||
///
|
||||
void (CEF_CALLBACK *on_upload_progress)(struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request, int64 current, int64 total);
|
||||
void(CEF_CALLBACK* on_upload_progress)(struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request,
|
||||
int64 current,
|
||||
int64 total);
|
||||
|
||||
///
|
||||
// Notifies the client of download progress. |current| denotes the number of
|
||||
// bytes received up to the call and |total| is the expected total size of the
|
||||
// response (or -1 if not determined).
|
||||
///
|
||||
void (CEF_CALLBACK *on_download_progress)(
|
||||
struct _cef_urlrequest_client_t* self, struct _cef_urlrequest_t* request,
|
||||
int64 current, int64 total);
|
||||
void(CEF_CALLBACK* on_download_progress)(
|
||||
struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request,
|
||||
int64 current,
|
||||
int64 total);
|
||||
|
||||
///
|
||||
// Called when some part of the response is read. |data| contains the current
|
||||
// bytes received since the last call. This function will not be called if the
|
||||
// UR_FLAG_NO_DOWNLOAD_DATA flag is set on the request.
|
||||
///
|
||||
void (CEF_CALLBACK *on_download_data)(struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request, const void* data,
|
||||
size_t data_length);
|
||||
void(CEF_CALLBACK* on_download_data)(struct _cef_urlrequest_client_t* self,
|
||||
struct _cef_urlrequest_t* request,
|
||||
const void* data,
|
||||
size_t data_length);
|
||||
|
||||
///
|
||||
// Called on the IO thread when the browser needs credentials from the user.
|
||||
@@ -180,13 +185,16 @@ typedef struct _cef_urlrequest_client_t {
|
||||
// function will only be called for requests initiated from the browser
|
||||
// process.
|
||||
///
|
||||
int (CEF_CALLBACK *get_auth_credentials)(
|
||||
struct _cef_urlrequest_client_t* self, int isProxy,
|
||||
const cef_string_t* host, int port, const cef_string_t* realm,
|
||||
const cef_string_t* scheme, struct _cef_auth_callback_t* callback);
|
||||
int(CEF_CALLBACK* get_auth_credentials)(
|
||||
struct _cef_urlrequest_client_t* self,
|
||||
int isProxy,
|
||||
const cef_string_t* host,
|
||||
int port,
|
||||
const cef_string_t* realm,
|
||||
const cef_string_t* scheme,
|
||||
struct _cef_auth_callback_t* callback);
|
||||
} cef_urlrequest_client_t;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user