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

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

Issue 571233002: Add keyboard auto-repeat metrics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 pref="settings.language.xkb_auto_repeat_enabled_r2" 96 pref="settings.language.xkb_auto_repeat_enabled_r2"
97 metric="Options_KeyboardAutoRepeat" dialog-pref> 97 metric="Options_KeyboardAutoRepeat" dialog-pref>
98 <span i18n-content="enableAutoRepeat"></span> 98 <span i18n-content="enableAutoRepeat"></span>
99 </label> 99 </label>
100 </div> 100 </div>
101 <div id="auto-repeat-settings-section"> 101 <div id="auto-repeat-settings-section">
102 <div class="row"> 102 <div class="row">
103 <span class="option-name" i18n-content="autoRepeatDelay"></span> 103 <span class="option-name" i18n-content="autoRepeatDelay"></span>
104 <span i18n-content="autoRepeatDelayLong"></span> 104 <span i18n-content="autoRepeatDelayLong"></span>
105 <input id="auto-repeat-delay-range" type="range" 105 <input id="auto-repeat-delay-range" type="range"
106 class="touch-slider" 106 class="touch-slider" metric="Options_KeyboardAutoRepeat_Delay"
107 pref="settings.language.xkb_auto_repeat_delay_r2" dialog-pref> 107 pref="settings.language.xkb_auto_repeat_delay_r2" dialog-pref>
108 <span i18n-content="autoRepeatDelayShort"></span> 108 <span i18n-content="autoRepeatDelayShort"></span>
109 </div> 109 </div>
110 <div class="row"> 110 <div class="row">
111 <span class="option-name" i18n-content="autoRepeatRate"></span> 111 <span class="option-name" i18n-content="autoRepeatRate"></span>
112 <span i18n-content="autoRepeatRateSlow"></span> 112 <span i18n-content="autoRepeatRateSlow"></span>
113 <input id="auto-repeat-interval-range" type="range" 113 <input id="auto-repeat-interval-range" type="range"
114 class="touch-slider" 114 class="touch-slider"
115 pref="settings.language.xkb_auto_repeat_interval_r2" 115 pref="settings.language.xkb_auto_repeat_interval_r2"
116 dialog-pref> 116 metric="Options_KeyboardAutoRepeat_Interval" dialog-pref>
117 <span i18n-content="autoRepeatRateFast"></span> 117 <span i18n-content="autoRepeatRateFast"></span>
118 </div> 118 </div>
119 </div> 119 </div>
120 </div> 120 </div>
121 <button id="keyboard-shortcuts" class="settings-row link-button" 121 <button id="keyboard-shortcuts" class="settings-row link-button"
122 i18n-content="showKeyboardShortcuts"></button> 122 i18n-content="showKeyboardShortcuts"></button>
123 <button id="languages-and-input-settings" class="settings-row link-button" 123 <button id="languages-and-input-settings" class="settings-row link-button"
124 i18n-content="changeLanguageAndInputSettings"></button> 124 i18n-content="changeLanguageAndInputSettings"></button>
125 </div> 125 </div>
126 <div class="action-area"> 126 <div class="action-area">
127 <div class="button-strip"> 127 <div class="button-strip">
128 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> 128 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
129 <button id="keyboard-confirm" class="default-button" type="submit" 129 <button id="keyboard-confirm" class="default-button" type="submit"
130 i18n-content="ok"> 130 i18n-content="ok">
131 </button> 131 </button>
132 </div> 132 </div>
133 </div> 133 </div>
134 </div> 134 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698