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

Side by Side Diff: third_party/WebKit/Source/core/events/InputEvent.h

Issue 2747943005: [InputEvent] Support 'insertTranspose' (Closed)
Patch Set: Created 3 years, 9 months 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 unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/Editor.cpp ('k') | third_party/WebKit/Source/core/events/InputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698