| Index: third_party/WebKit/Source/core/events/InputEvent.h
|
| diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h
|
| index b35a273318603a6e0d3e8aba0978eb11fe05cceb..5432803ff388d28cdf066ad9233f8f05c8c185f9 100644
|
| --- a/third_party/WebKit/Source/core/events/InputEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/InputEvent.h
|
| @@ -32,6 +32,7 @@ public:
|
| InsertUnorderedList,
|
| InsertHorizontalRule,
|
| InsertFromPaste,
|
| + InsertFromDrop,
|
| // Deletion.
|
| DeleteComposedCharacterForward,
|
| DeleteComposedCharacterBackward,
|
| @@ -42,6 +43,7 @@ public:
|
| DeleteContentBackward,
|
| DeleteContentForward,
|
| DeleteByCut,
|
| + DeleteByDrag,
|
| // Command.
|
| Undo,
|
| Redo,
|
| @@ -60,8 +62,6 @@ public:
|
| Outdent,
|
| RemoveFormat,
|
| // Not on spec.
|
| - // TODO(chongz): Drag is not on SPEC but it's not decided how we should handle it.
|
| - Drag,
|
| JustifyFull,
|
| SetColor,
|
| SetBackgroundColor,
|
| @@ -72,6 +72,8 @@ public:
|
| CreateLink,
|
| Unlink,
|
| FormatBlock,
|
| + // Internal use.
|
| + MoveByDragDrop, // Combines |InsertFromDrop| and |DeleteByDrag|.
|
|
|
| // Add new input types immediately above this line.
|
| NumberOfInputTypes,
|
|
|