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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.h

Issue 2558643003: [InputEvent] Move 'beforeinput' logic into |CompositeEditCommand::willApplyEditing()| (3/3) (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
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 3d0f4f2e99d264ef0cc202835672f795611b6fd2..04d3369db58fb87586ae2502df1e269ed5a2acf4 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.h
+++ b/third_party/WebKit/Source/core/events/InputEvent.h
@@ -40,8 +40,9 @@ class InputEvent final : public UIEvent {
DeleteComposedCharacterBackward,
DeleteWordBackward,
DeleteWordForward,
- DeleteLineBackward,
- DeleteLineForward,
+ DeleteSoftLineBackward,
+ DeleteSoftLineForward,
+ DeleteContent,
DeleteContentBackward,
DeleteContentForward,
DeleteByCut,
@@ -91,8 +92,7 @@ class InputEvent final : public UIEvent {
const RangeVector*);
static InputEvent* createInput(InputType,
const String& data,
- EventIsComposing,
- const RangeVector*);
+ EventIsComposing);
String inputType() const;
const String& data() const { return m_data; }

Powered by Google App Engine
This is Rietveld 408576698