mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Add CefDragHandler to support examination of drag data and cancellation of drag requests (issue #297).
- Mac: Fix dragging of URLs by providing a default image if no drag image is supplied. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@279 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -550,6 +550,23 @@ enum cef_handler_errorcode_t
|
||||
ERR_INSECURE_RESPONSE = -501,
|
||||
};
|
||||
|
||||
///
|
||||
// "Verb" of a drag-and-drop operation as negotiated between the source and
|
||||
// destination. These constants match their equivalents in WebCore's
|
||||
// DragActions.h and should not be renumbered.
|
||||
///
|
||||
enum cef_drag_operations_mask_t
|
||||
{
|
||||
DRAG_OPERATION_NONE = 0,
|
||||
DRAG_OPERATION_COPY = 1,
|
||||
DRAG_OPERATION_LINK = 2,
|
||||
DRAG_OPERATION_GENERIC = 4,
|
||||
DRAG_OPERATION_PRIVATE = 8,
|
||||
DRAG_OPERATION_MOVE = 16,
|
||||
DRAG_OPERATION_DELETE = 32,
|
||||
DRAG_OPERATION_EVERY = UINT_MAX
|
||||
};
|
||||
|
||||
///
|
||||
// V8 access control values.
|
||||
///
|
||||
|
Reference in New Issue
Block a user