| 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/Range.h" | 9 #include "core/dom/Range.h" |
| 10 #include "core/dom/StaticRange.h" | 10 #include "core/dom/StaticRange.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 // Insertion. | 28 // Insertion. |
| 29 InsertText, | 29 InsertText, |
| 30 InsertLineBreak, | 30 InsertLineBreak, |
| 31 InsertParagraph, | 31 InsertParagraph, |
| 32 InsertOrderedList, | 32 InsertOrderedList, |
| 33 InsertUnorderedList, | 33 InsertUnorderedList, |
| 34 InsertHorizontalRule, | 34 InsertHorizontalRule, |
| 35 InsertFromPaste, | 35 InsertFromPaste, |
| 36 InsertFromDrop, | 36 InsertFromDrop, |
| 37 InsertFromYank, | 37 InsertFromYank, |
| 38 InsertTranspose, |
| 38 InsertReplacementText, | 39 InsertReplacementText, |
| 39 InsertCompositionText, | 40 InsertCompositionText, |
| 40 // Deletion. | 41 // Deletion. |
| 41 DeleteWordBackward, | 42 DeleteWordBackward, |
| 42 DeleteWordForward, | 43 DeleteWordForward, |
| 43 DeleteLineBackward, | 44 DeleteLineBackward, |
| 44 DeleteLineForward, | 45 DeleteLineForward, |
| 45 DeleteContentBackward, | 46 DeleteContentBackward, |
| 46 DeleteContentForward, | 47 DeleteContentForward, |
| 47 DeleteByCut, | 48 DeleteByCut, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 explicit InputEventDispatchMediator(InputEvent*); | 130 explicit InputEventDispatchMediator(InputEvent*); |
| 130 InputEvent& event() const; | 131 InputEvent& event() const; |
| 131 DispatchEventResult dispatchEvent(EventDispatcher&) const override; | 132 DispatchEventResult dispatchEvent(EventDispatcher&) const override; |
| 132 }; | 133 }; |
| 133 | 134 |
| 134 DEFINE_EVENT_TYPE_CASTS(InputEvent); | 135 DEFINE_EVENT_TYPE_CASTS(InputEvent); |
| 135 | 136 |
| 136 } // namespace blink | 137 } // namespace blink |
| 137 | 138 |
| 138 #endif // InputEvent_h | 139 #endif // InputEvent_h |
| OLD | NEW |