| 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 6ed564ee4facb5e8d7be9a66d0d70de1467edfd2..07d8911d1ab945a40f84a33348346145344d6421 100644
|
| --- a/third_party/WebKit/Source/core/events/InputEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/InputEvent.h
|
| @@ -27,12 +27,22 @@ public:
|
|
|
| enum class InputType {
|
| None,
|
| + // Insertion.
|
| InsertText,
|
| ReplaceContent,
|
| + // Deletion.
|
| DeleteContent,
|
| DeleteComposedCharacter,
|
| + // Misc.
|
| Undo,
|
| Redo,
|
| + // Styling.
|
| + Bold,
|
| + Italic,
|
| + Underline,
|
| + StrikeThrough,
|
| + Superscript,
|
| + Subscript,
|
|
|
| // Add new input types immediately above this line.
|
| NumberOfInputTypes,
|
|
|