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

Unified Diff: ui/base/ime/linux/text_edit_command_auralinux.cc

Issue 2228833002: MacViews: Fix behavior of move and select commands when selection direction changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_text_commands
Patch Set: Address review comments. Created 4 years, 4 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 | « no previous file | ui/base/ime/text_edit_commands.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/linux/text_edit_command_auralinux.cc
diff --git a/ui/base/ime/linux/text_edit_command_auralinux.cc b/ui/base/ime/linux/text_edit_command_auralinux.cc
index 3ccaf628718d90e0a495504cde293ccf736f1cb4..40aeda6c394bac7166881784435942bb0b79f310 100644
--- a/ui/base/ime/linux/text_edit_command_auralinux.cc
+++ b/ui/base/ime/linux/text_edit_command_auralinux.cc
@@ -81,6 +81,10 @@ std::string TextEditCommandAuraLinux::GetCommandString() const {
return "MoveToEndOfParagraph";
case TextEditCommand::MOVE_TO_END_OF_PARAGRAPH_AND_MODIFY_SELECTION:
return "MoveToEndOfParagraphAndModifySelection";
+ case TextEditCommand::MOVE_PARAGRAPH_BACKWARD_AND_MODIFY_SELECTION:
+ return "MoveParagraphBackwardAndModifySelection";
+ case TextEditCommand::MOVE_PARAGRAPH_FORWARD_AND_MODIFY_SELECTION:
+ return "MoveParagraphForwardAndModifySelection";
case TextEditCommand::MOVE_UP:
return "MoveUp";
case TextEditCommand::MOVE_UP_AND_MODIFY_SELECTION:
« no previous file with comments | « no previous file | ui/base/ime/text_edit_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698