| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef InputEvent_h | 5 #ifndef InputEvent_h |
| 6 #define InputEvent_h | 6 #define InputEvent_h |
| 7 | 7 |
| 8 #include "core/clipboard/DataTransfer.h" | 8 #include "core/clipboard/DataTransfer.h" |
| 9 #include "core/dom/StaticRange.h" | 9 #include "core/dom/StaticRange.h" |
| 10 #include "core/events/InputEventInit.h" | 10 #include "core/events/InputEventInit.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 // Insertion. | 26 // Insertion. |
| 27 InsertText, | 27 InsertText, |
| 28 InsertNonText, | 28 InsertNonText, |
| 29 InsertLineBreak, | 29 InsertLineBreak, |
| 30 InsertParagraph, | 30 InsertParagraph, |
| 31 InsertOrderedList, | 31 InsertOrderedList, |
| 32 InsertUnorderedList, | 32 InsertUnorderedList, |
| 33 InsertHorizontalRule, | 33 InsertHorizontalRule, |
| 34 InsertFromPaste, | 34 InsertFromPaste, |
| 35 InsertFromDrop, | 35 InsertFromDrop, |
| 36 InsertReplacementText, |
| 36 // Deletion. | 37 // Deletion. |
| 37 DeleteComposedCharacterForward, | 38 DeleteComposedCharacterForward, |
| 38 DeleteComposedCharacterBackward, | 39 DeleteComposedCharacterBackward, |
| 39 DeleteWordBackward, | 40 DeleteWordBackward, |
| 40 DeleteWordForward, | 41 DeleteWordForward, |
| 41 DeleteLineBackward, | 42 DeleteLineBackward, |
| 42 DeleteLineForward, | 43 DeleteLineForward, |
| 43 DeleteContentBackward, | 44 DeleteContentBackward, |
| 44 DeleteContentForward, | 45 DeleteContentForward, |
| 45 DeleteByCut, | 46 DeleteByCut, |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 explicit InputEventDispatchMediator(InputEvent*); | 138 explicit InputEventDispatchMediator(InputEvent*); |
| 138 InputEvent& event() const; | 139 InputEvent& event() const; |
| 139 DispatchEventResult dispatchEvent(EventDispatcher&) const override; | 140 DispatchEventResult dispatchEvent(EventDispatcher&) const override; |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 DEFINE_EVENT_TYPE_CASTS(InputEvent); | 143 DEFINE_EVENT_TYPE_CASTS(InputEvent); |
| 143 | 144 |
| 144 } // namespace blink | 145 } // namespace blink |
| 145 | 146 |
| 146 #endif // InputEvent_h | 147 #endif // InputEvent_h |
| OLD | NEW |