Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(972)

Unified Diff: Source/core/page/DragActions.h

Issue 50433002: Fix dragging text inside a input element nested in a draggable element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Better names and comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/page/DragActions.h
diff --git a/Source/core/page/DragActions.h b/Source/core/page/DragActions.h
index d98c9c40e2ae737393a3ae792f4830925120f043..ce42ab777d91e6a04b50b49659fc9f7797b697d1 100644
--- a/Source/core/page/DragActions.h
+++ b/Source/core/page/DragActions.h
@@ -39,13 +39,12 @@ namespace WebCore {
DragDestinationActionAny = UINT_MAX
} DragDestinationAction;
- // WebCoreDragSourceAction should be kept in sync with WebDragSourceAction
typedef enum {
- DragSourceActionNone = 0,
- DragSourceActionDHTML = 1,
- DragSourceActionImage = 2,
- DragSourceActionLink = 4,
- DragSourceActionSelection = 8,
+ DragSourceActionNone,
+ DragSourceActionDHTML,
+ DragSourceActionImage,
+ DragSourceActionLink,
+ DragSourceActionSelection,
} DragSourceAction;
//matches NSDragOperation

Powered by Google App Engine
This is Rietveld 408576698