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

Side by Side Diff: chrome/browser/resources/options/browser_options.html

Issue 400993003: Save slider preferences when using touch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Can only test CrOS Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/options/pref_ui.js » ('j') | 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="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <include src="reset_profile_settings_banner.html"> 5 <include src="reset_profile_settings_banner.html">
6 <include src="automatic_settings_reset_banner.html"> 6 <include src="automatic_settings_reset_banner.html">
7 <if expr="chromeos"> 7 <if expr="chromeos">
8 <include src="secondary_user_banner.html"> 8 <include src="secondary_user_banner.html">
9 <section> 9 <section>
10 <div id="network-section-header" class="section-header"> 10 <div id="network-section-header" class="section-header">
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 </label></div> 103 </label></div>
104 </if> 104 </if>
105 </section> 105 </section>
106 <if expr="chromeos"> 106 <if expr="chromeos">
107 <section> 107 <section>
108 <h3 i18n-content="sectionTitleDevice"></h3> 108 <h3 i18n-content="sectionTitleDevice"></h3>
109 <div> 109 <div>
110 <span i18n-content="deviceGroupDescription"></span> 110 <span i18n-content="deviceGroupDescription"></span>
111 <div id="touchpad-settings" class="settings-row" hidden> 111 <div id="touchpad-settings" class="settings-row" hidden>
112 <span class="option-name" i18n-content="touchpadSpeed"></span> 112 <span class="option-name" i18n-content="touchpadSpeed"></span>
113 <input id="sensitivity-range" type="range" min="1" max="5" 113 <input id="touchpad-sensitivity-range" type="range" min="1" max="5"
114 pref="settings.touchpad.sensitivity2" class="touch-slider"> 114 pref="settings.touchpad.sensitivity2" class="touch-slider">
115 </div> 115 </div>
116 <div id="mouse-settings" class="settings-row" hidden> 116 <div id="mouse-settings" class="settings-row" hidden>
117 <span class="option-name" i18n-content="mouseSpeed"></span> 117 <span class="option-name" i18n-content="mouseSpeed"></span>
118 <input id="sensitivity-range" type="range" min="1" max="5" 118 <input id="mouse-sensitivity-range" type="range" min="1" max="5"
119 pref="settings.mouse.sensitivity2" class="touch-slider"> 119 pref="settings.mouse.sensitivity2" class="touch-slider">
120 </div> 120 </div>
121 <div id="no-pointing-devices" i18n-content="noPointingDevices" 121 <div id="no-pointing-devices" i18n-content="noPointingDevices"
122 class="settings-row" hidden> 122 class="settings-row" hidden>
123 </div> 123 </div>
124 <div class="settings-row"> 124 <div class="settings-row">
125 <button id="pointer-settings-button" hidden> 125 <button id="pointer-settings-button" hidden>
126 </button> 126 </button>
127 <button id="keyboard-settings-button" 127 <button id="keyboard-settings-button"
128 i18n-content="keyboardSettingsButtonTitle"> 128 i18n-content="keyboardSettingsButtonTitle">
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 </div> 949 </div>
950 </section> 950 </section>
951 </div> <!-- advanced-settings-container --> 951 </div> <!-- advanced-settings-container -->
952 </div> <!-- advanced-settings --> 952 </div> <!-- advanced-settings -->
953 <footer> 953 <footer>
954 <button id="advanced-settings-expander" class="link-button" 954 <button id="advanced-settings-expander" class="link-button"
955 i18n-content="showAdvancedSettings"> 955 i18n-content="showAdvancedSettings">
956 </button> 956 </button>
957 </footer> 957 </footer>
958 </div> 958 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/pref_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698