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

Unified Diff: ui/events/linux/text_edit_command_auralinux.cc

Issue 2030813002: Correct typo in ui::TextEditCommandAuraLinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor6_remove_delete_command
Patch Set: Rebase Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/linux/text_edit_command_auralinux.h ('k') | ui/views/controls/textfield/textfield.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/linux/text_edit_command_auralinux.cc
diff --git a/ui/events/linux/text_edit_command_auralinux.cc b/ui/events/linux/text_edit_command_auralinux.cc
index 4429225f48ce145ed88f982968d5438f45ca080a..9684563c2793f82c92d568f9343a05e701bab8cf 100644
--- a/ui/events/linux/text_edit_command_auralinux.cc
+++ b/ui/events/linux/text_edit_command_auralinux.cc
@@ -23,10 +23,10 @@ std::string TextEditCommandAuraLinux::GetCommandString() const {
case DELETE_FORWARD:
base_name = "DeleteForward";
break;
- case DELETE_TO_BEGINING_OF_LINE:
+ case DELETE_TO_BEGINNING_OF_LINE:
base_name = "DeleteToBeginningOfLine";
break;
- case DELETE_TO_BEGINING_OF_PARAGRAPH:
+ case DELETE_TO_BEGINNING_OF_PARAGRAPH:
base_name = "DeleteToBeginningOfParagraph";
break;
case DELETE_TO_END_OF_LINE:
@@ -65,13 +65,13 @@ std::string TextEditCommandAuraLinux::GetCommandString() const {
case MOVE_RIGHT:
base_name = "MoveRight";
break;
- case MOVE_TO_BEGINING_OF_DOCUMENT:
+ case MOVE_TO_BEGINNING_OF_DOCUMENT:
base_name = "MoveToBeginningOfDocument";
break;
- case MOVE_TO_BEGINING_OF_LINE:
+ case MOVE_TO_BEGINNING_OF_LINE:
base_name = "MoveToBeginningOfLine";
break;
- case MOVE_TO_BEGINING_OF_PARAGRAPH:
+ case MOVE_TO_BEGINNING_OF_PARAGRAPH:
base_name = "MoveToBeginningOfParagraph";
break;
case MOVE_TO_END_OF_DOCUMENT:
« no previous file with comments | « ui/events/linux/text_edit_command_auralinux.h ('k') | ui/views/controls/textfield/textfield.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698