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

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

Issue 2777863003: [InputEvent] Distinguish between soft line and hard line (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/events/InputEvent.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/events/InputEvent.cpp
diff --git a/third_party/WebKit/Source/core/events/InputEvent.cpp b/third_party/WebKit/Source/core/events/InputEvent.cpp
index 0b84074c816aca95d648b3153fa9c81d8e89d351..ab967f695e81b5d51af6e5f90066d62eaec30739 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.cpp
+++ b/third_party/WebKit/Source/core/events/InputEvent.cpp
@@ -31,8 +31,10 @@ const struct {
{InputEvent::InputType::InsertCompositionText, "insertCompositionText"},
{InputEvent::InputType::DeleteWordBackward, "deleteWordBackward"},
{InputEvent::InputType::DeleteWordForward, "deleteWordForward"},
- {InputEvent::InputType::DeleteLineBackward, "deleteLineBackward"},
- {InputEvent::InputType::DeleteLineForward, "deleteLineForward"},
+ {InputEvent::InputType::DeleteSoftLineBackward, "deleteSoftLineBackward"},
+ {InputEvent::InputType::DeleteSoftLineForward, "deleteSoftLineForward"},
+ {InputEvent::InputType::DeleteHardLineBackward, "deleteHardLineBackward"},
+ {InputEvent::InputType::DeleteHardLineForward, "deleteHardLineForward"},
{InputEvent::InputType::DeleteContentBackward, "deleteContentBackward"},
{InputEvent::InputType::DeleteContentForward, "deleteContentForward"},
{InputEvent::InputType::DeleteByCut, "deleteByCut"},
« no previous file with comments | « third_party/WebKit/Source/core/events/InputEvent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698