mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update include/ comments to Doxygen formatting (see issue #3384)
See related guidelines in the issue.
This commit is contained in:
@ -41,32 +41,32 @@
|
||||
#include "include/cef_base.h"
|
||||
|
||||
///
|
||||
// Generic callback interface used for asynchronous continuation.
|
||||
/// Generic callback interface used for asynchronous continuation.
|
||||
///
|
||||
/*--cef(source=library)--*/
|
||||
class CefCallback : public virtual CefBaseRefCounted {
|
||||
public:
|
||||
///
|
||||
// Continue processing.
|
||||
/// Continue processing.
|
||||
///
|
||||
/*--cef(capi_name=cont)--*/
|
||||
virtual void Continue() = 0;
|
||||
|
||||
///
|
||||
// Cancel processing.
|
||||
/// Cancel processing.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void Cancel() = 0;
|
||||
};
|
||||
|
||||
///
|
||||
// Generic callback interface used for asynchronous completion.
|
||||
/// Generic callback interface used for asynchronous completion.
|
||||
///
|
||||
/*--cef(source=client)--*/
|
||||
class CefCompletionCallback : public virtual CefBaseRefCounted {
|
||||
public:
|
||||
///
|
||||
// Method that will be called once the task is complete.
|
||||
/// Method that will be called once the task is complete.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void OnComplete() = 0;
|
||||
|
Reference in New Issue
Block a user