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

Side by Side Diff: ui/base/ime/text_edit_commands.h

Issue 1999773002: views::Textfield: Implement transpose editing command. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments. Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_BASE_IME_TEXT_EDIT_COMMANDS_H_ 5 #ifndef UI_BASE_IME_TEXT_EDIT_COMMANDS_H_
6 #define UI_BASE_IME_TEXT_EDIT_COMMANDS_H_ 6 #define UI_BASE_IME_TEXT_EDIT_COMMANDS_H_
7 7
8 namespace ui { 8 namespace ui {
9 9
10 // Text editing commands for use by ui::TextInputClient. 10 // Text editing commands for use by ui::TextInputClient.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 MOVE_WORD_LEFT, 52 MOVE_WORD_LEFT,
53 MOVE_WORD_LEFT_AND_MODIFY_SELECTION, 53 MOVE_WORD_LEFT_AND_MODIFY_SELECTION,
54 MOVE_WORD_RIGHT, 54 MOVE_WORD_RIGHT,
55 MOVE_WORD_RIGHT_AND_MODIFY_SELECTION, 55 MOVE_WORD_RIGHT_AND_MODIFY_SELECTION,
56 UNDO, 56 UNDO,
57 REDO, 57 REDO,
58 CUT, 58 CUT,
59 COPY, 59 COPY,
60 PASTE, 60 PASTE,
61 SELECT_ALL, 61 SELECT_ALL,
62 TRANSPOSE,
62 INSERT_TEXT, 63 INSERT_TEXT,
63 SET_MARK, 64 SET_MARK,
64 UNSELECT, 65 UNSELECT,
65 INVALID_COMMAND, 66 INVALID_COMMAND,
66 }; 67 };
67 68
68 } // namespace ui 69 } // namespace ui
69 70
70 #endif // UI_BASE_IME_TEXT_EDIT_COMMANDS_H_ 71 #endif // UI_BASE_IME_TEXT_EDIT_COMMANDS_H_
OLDNEW
« no previous file with comments | « ui/base/ime/linux/text_edit_command_auralinux.cc ('k') | ui/views/cocoa/bridged_content_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698