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

Unified Diff: ui/events/text_edit_commands.h

Issue 2034623002: Unify ui::TextEditCommand and ui::TextEditCommandAuraLinux::CommandId. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor7_correct_text_edit_command_aura_typo
Patch Set: 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
Index: ui/events/text_edit_commands.h
diff --git a/ui/events/text_edit_commands.h b/ui/events/text_edit_commands.h
index 4135a00372670218e1c3ccc64d9eff56245770ed..733d0a1438cc9ee0a6b11b4cc43a3cea4b4fcb65 100644
--- a/ui/events/text_edit_commands.h
+++ b/ui/events/text_edit_commands.h
@@ -36,6 +36,35 @@ enum class TextEditCommand {
MOVE_TO_END_OF_LINE_AND_MODIFY_SELECTION,
MOVE_UP,
MOVE_DOWN,
+
+ DELETE_TO_BEGINNING_OF_PARAGRAPH,
+ DELETE_TO_END_OF_PARAGRAPH,
+ INSERT_TEXT,
+ MOVE_BACKWARD,
+ MOVE_FORWARD,
+ MOVE_PAGE_DOWN,
+ MOVE_PAGE_UP,
+ MOVE_TO_BEGINNING_OF_DOCUMENT,
+ MOVE_TO_BEGINNING_OF_PARAGRAPH,
+ MOVE_TO_END_OF_DOCUMENT,
+ MOVE_TO_END_OF_PARAGRAPH,
+ MOVE_WORD_BACKWARD,
+ MOVE_WORD_FORWARD,
+ SET_MARK,
+ UNSELECT,
+
+ MOVE_UP_AND_MODIFY_SELECTION,
msw 2016/06/10 01:33:23 nit: ordering... keep FOO and FOO_AND_MODIFY_SELEC
karandeepb 2016/06/15 08:13:34 Done.
+ MOVE_DOWN_AND_MODIFY_SELECTION,
+ MOVE_BACKWARD_AND_MODIFY_SELECTION,
+ MOVE_FORWARD_AND_MODIFY_SELECTION,
+ MOVE_PAGE_DOWN_AND_MODIFY_SELECTION,
+ MOVE_PAGE_UP_AND_MODIFY_SELECTION,
+ MOVE_TO_BEGINNING_OF_DOCUMENT_AND_MODIFY_SELECTION,
+ MOVE_TO_BEGINNING_OF_PARAGRAPH_AND_MODIFY_SELECTION,
+ MOVE_TO_END_OF_DOCUMENT_AND_MODIFY_SELECTION,
+ MOVE_TO_END_OF_PARAGRAPH_AND_MODIFY_SELECTION,
+ MOVE_WORD_BACKWARD_AND_MODIFY_SELECTION,
+ MOVE_WORD_FORWARD_AND_MODIFY_SELECTION,
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698