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:
@ -44,8 +44,8 @@
|
||||
#include "include/cef_frame.h"
|
||||
|
||||
///
|
||||
// Implement this interface to handle events related to dragging. The methods of
|
||||
// this class will be called on the UI thread.
|
||||
/// Implement this interface to handle events related to dragging. The methods
|
||||
/// of this class will be called on the UI thread.
|
||||
///
|
||||
/*--cef(source=client)--*/
|
||||
class CefDragHandler : public virtual CefBaseRefCounted {
|
||||
@ -53,10 +53,10 @@ class CefDragHandler : public virtual CefBaseRefCounted {
|
||||
typedef cef_drag_operations_mask_t DragOperationsMask;
|
||||
|
||||
///
|
||||
// Called when an external drag event enters the browser window. |dragData|
|
||||
// contains the drag event data and |mask| represents the type of drag
|
||||
// operation. Return false for default drag handling behavior or true to
|
||||
// cancel the drag event.
|
||||
/// Called when an external drag event enters the browser window. |dragData|
|
||||
/// contains the drag event data and |mask| represents the type of drag
|
||||
/// operation. Return false for default drag handling behavior or true to
|
||||
/// cancel the drag event.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual bool OnDragEnter(CefRefPtr<CefBrowser> browser,
|
||||
@ -66,11 +66,11 @@ class CefDragHandler : public virtual CefBaseRefCounted {
|
||||
}
|
||||
|
||||
///
|
||||
// Called whenever draggable regions for the browser window change. These can
|
||||
// be specified using the '-webkit-app-region: drag/no-drag' CSS-property. If
|
||||
// draggable regions are never defined in a document this method will also
|
||||
// never be called. If the last draggable region is removed from a document
|
||||
// this method will be called with an empty vector.
|
||||
/// Called whenever draggable regions for the browser window change. These can
|
||||
/// be specified using the '-webkit-app-region: drag/no-drag' CSS-property. If
|
||||
/// draggable regions are never defined in a document this method will also
|
||||
/// never be called. If the last draggable region is removed from a document
|
||||
/// this method will be called with an empty vector.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void OnDraggableRegionsChanged(
|
||||
|
Reference in New Issue
Block a user