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

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

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Respond to yosin@'s comments Created 3 years, 6 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 21 matching lines...) Expand all
32 kInsertOrderedList, 32 kInsertOrderedList,
33 kInsertUnorderedList, 33 kInsertUnorderedList,
34 kInsertHorizontalRule, 34 kInsertHorizontalRule,
35 kInsertFromPaste, 35 kInsertFromPaste,
36 kInsertFromDrop, 36 kInsertFromDrop,
37 kInsertFromYank, 37 kInsertFromYank,
38 kInsertTranspose, 38 kInsertTranspose,
39 kInsertReplacementText, 39 kInsertReplacementText,
40 kInsertCompositionText, 40 kInsertCompositionText,
41 // Deletion. 41 // Deletion.
42 kDeleteByComposition,
42 kDeleteWordBackward, 43 kDeleteWordBackward,
43 kDeleteWordForward, 44 kDeleteWordForward,
44 kDeleteSoftLineBackward, 45 kDeleteSoftLineBackward,
45 kDeleteSoftLineForward, 46 kDeleteSoftLineForward,
46 kDeleteHardLineBackward, 47 kDeleteHardLineBackward,
47 kDeleteHardLineForward, 48 kDeleteHardLineForward,
48 kDeleteContentBackward, 49 kDeleteContentBackward,
49 kDeleteContentForward, 50 kDeleteContentForward,
50 kDeleteByCut, 51 kDeleteByCut,
51 kDeleteByDrag, 52 kDeleteByDrag,
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 explicit InputEventDispatchMediator(InputEvent*); 133 explicit InputEventDispatchMediator(InputEvent*);
133 InputEvent& Event() const; 134 InputEvent& Event() const;
134 DispatchEventResult DispatchEvent(EventDispatcher&) const override; 135 DispatchEventResult DispatchEvent(EventDispatcher&) const override;
135 }; 136 };
136 137
137 DEFINE_EVENT_TYPE_CASTS(InputEvent); 138 DEFINE_EVENT_TYPE_CASTS(InputEvent);
138 139
139 } // namespace blink 140 } // namespace blink
140 141
141 #endif // InputEvent_h 142 #endif // InputEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698