| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 EditorCommandNames_h | 5 #ifndef WebEditorCommandNames_h |
| 6 #define EditorCommandNames_h | 6 #define WebEditorCommandNames_h |
| 7 | 7 |
| 8 namespace blink { | 8 namespace blink { |
| 9 | 9 |
| 10 // Must be ordered in a case-folding manner for binary search. | 10 // Must be ordered in a case-folding manner for binary search. |
| 11 // Covered by unit tests in EditingCommandTest.cpp (not able to use static_asser
t) | 11 // Covered by unit tests in EditingCommandTest.cpp (not able to use static_asser
t) |
| 12 #define FOR_EACH_BLINK_EDITING_COMMAND_NAME(V) \ | 12 #define FOR_EACH_BLINK_EDITING_COMMAND_NAME(V) \ |
| 13 V(AlignCenter) \ | 13 V(AlignCenter) \ |
| 14 V(AlignJustified) \ | 14 V(AlignJustified) \ |
| 15 V(AlignLeft) \ | 15 V(AlignLeft) \ |
| 16 V(AlignRight) \ | 16 V(AlignRight) \ |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 V(Undo) \ | 145 V(Undo) \ |
| 146 V(Unlink) \ | 146 V(Unlink) \ |
| 147 V(Unscript) \ | 147 V(Unscript) \ |
| 148 V(Unselect) \ | 148 V(Unselect) \ |
| 149 V(UseCSS) \ | 149 V(UseCSS) \ |
| 150 V(Yank) \ | 150 V(Yank) \ |
| 151 V(YankAndSelect) | 151 V(YankAndSelect) |
| 152 | 152 |
| 153 } // namespace blink | 153 } // namespace blink |
| 154 | 154 |
| 155 #endif // EditorCommandNames_h | 155 #endif // WebEditorCommandNames_h |
| OLD | NEW |