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

Side by Side Diff: chrome/browser/resources/options/chromeos/keyboard_overlay.html

Issue 2250473006: Settings to remap Backspace and Escape keys (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@KeyboardRemapToCapsLockBackspace
Patch Set: rebase 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 unified diff | Download patch
OLDNEW
1 <div id="keyboard-overlay" class="page" hidden> 1 <div id="keyboard-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="keyboardOverlay"></h1> 3 <h1 i18n-content="keyboardOverlay"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <table class="option-control-table"> 5 <table class="option-control-table">
6 <tr> 6 <tr>
7 <td class="option-name" id="remap-search-key-to-label" 7 <td class="option-name" id="remap-search-key-to-label"
8 i18n-content="remapSearchKeyToContent"> 8 i18n-content="remapSearchKeyToContent">
9 </td> 9 </td>
10 <td class="option-value"> 10 <td class="option-value">
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 <td class="option-value"> 66 <td class="option-value">
67 <select class="control" 67 <select class="control"
68 data-type="number" 68 data-type="number"
69 metric="Options_KeyboardRemapDiamondKey" 69 metric="Options_KeyboardRemapDiamondKey"
70 pref="settings.language.remap_diamond_key_to" 70 pref="settings.language.remap_diamond_key_to"
71 i18n-options="remapDiamondKeyToValue" 71 i18n-options="remapDiamondKeyToValue"
72 aria-labelledby="remap-diamond-key-to-label" dialog-pref> 72 aria-labelledby="remap-diamond-key-to-label" dialog-pref>
73 </select> 73 </select>
74 </td> 74 </td>
75 </tr> 75 </tr>
76 <tr>
77 <td class="option-name" id="remap-backspace-key-to-label"
78 i18n-content="remapBackspaceKeyToContent">
79 </td>
80 <td class="option-value">
81 <select class="control" data-type="number"
82 metric="Options_KeyboardRemapBackspaceKey"
83 pref="settings.language.remap_backspace_key_to"
84 i18n-options="remapBackspaceKeyToValue"
85 aria-labelledby="remap-backspace-key-to-label" dialog-pref>
86 </select>
87 </td>
88 </tr>
89 <tr>
90 <td class="option-name" id="remap-escape-key-to-label"
91 i18n-content="remapEscapeKeyToContent">
92 </td>
93 <td class="option-value">
94 <select class="control" data-type="number"
95 metric="Options_KeyboardRemapEscapeKey"
96 pref="settings.language.remap_escape_key_to"
97 i18n-options="remapEscapeKeyToValue"
98 aria-labelledby="remap-escape-key-to-label" dialog-pref></select>
99 </td>
100 </tr>
76 </table> 101 </table>
77 <div class="settings-row"> 102 <div class="settings-row">
78 <div class="checkbox controlled-setting-with-label"> 103 <div class="checkbox controlled-setting-with-label">
79 <label> 104 <label>
80 <input type="checkbox" 105 <input type="checkbox"
81 pref="settings.language.send_function_keys" 106 pref="settings.language.send_function_keys"
82 aria-describedby="send-function-keys-description" dialog-pref> 107 aria-describedby="send-function-keys-description" dialog-pref>
83 <span> 108 <span>
84 <span i18n-content="sendFunctionKeys"></span> 109 <span i18n-content="sendFunctionKeys"></span>
85 <span class="bubble-button controlled-setting-indicator" 110 <span class="bubble-button controlled-setting-indicator"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 </div> 151 </div>
127 <div class="action-area"> 152 <div class="action-area">
128 <div class="button-strip"> 153 <div class="button-strip">
129 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> 154 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
130 <button id="keyboard-confirm" class="default-button" type="submit" 155 <button id="keyboard-confirm" class="default-button" type="submit"
131 i18n-content="ok"> 156 i18n-content="ok">
132 </button> 157 </button>
133 </div> 158 </div>
134 </div> 159 </div>
135 </div> 160 </div>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698