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=68de2255fd429696d62115786fc480f1d5f9882b$
|
||||
//
|
||||
|
||||
#ifndef CEF_INCLUDE_CAPI_CEF_CALLBACK_CAPI_H_
|
||||
#define CEF_INCLUDE_CAPI_CEF_CALLBACK_CAPI_H_
|
||||
@ -44,7 +46,6 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
///
|
||||
// Generic callback structure used for asynchronous continuation.
|
||||
///
|
||||
@ -57,15 +58,14 @@ typedef struct _cef_callback_t {
|
||||
///
|
||||
// Continue processing.
|
||||
///
|
||||
void (CEF_CALLBACK *cont)(struct _cef_callback_t* self);
|
||||
void(CEF_CALLBACK* cont)(struct _cef_callback_t* self);
|
||||
|
||||
///
|
||||
// Cancel processing.
|
||||
///
|
||||
void (CEF_CALLBACK *cancel)(struct _cef_callback_t* self);
|
||||
void(CEF_CALLBACK* cancel)(struct _cef_callback_t* self);
|
||||
} cef_callback_t;
|
||||
|
||||
|
||||
///
|
||||
// Generic callback structure used for asynchronous completion.
|
||||
///
|
||||
@ -78,10 +78,9 @@ typedef struct _cef_completion_callback_t {
|
||||
///
|
||||
// Method that will be called once the task is complete.
|
||||
///
|
||||
void (CEF_CALLBACK *on_complete)(struct _cef_completion_callback_t* self);
|
||||
void(CEF_CALLBACK* on_complete)(struct _cef_completion_callback_t* self);
|
||||
} cef_completion_callback_t;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user