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

Unified Diff: chrome/browser/resources/options/chromeos_system_options.html

Issue 2835009: Split options page code/html into its own set of files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/chromeos_system_options.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos_system_options.html
===================================================================
--- chrome/browser/resources/options/chromeos_system_options.html (revision 0)
+++ chrome/browser/resources/options/chromeos_system_options.html (revision 0)
@@ -0,0 +1,68 @@
+<div class="page hidden" id="systemPage">
+ <div class="section">
+ <div class="section-title" i18n-content="datetime_title"></div>
+ <div class="option">
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name" i18n-content="timezone"></td>
+ <td class="option-value">
+ <select id="timezone-select" class="control"
+ pref="settings.datetime.timezone"></select>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </div>
+ <div class="section">
+ <div class="section-title" i18n-content="touchpad"></div>
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name" i18n-content="sensitivity"></td>
+ <td class="option-value">
+ <input id="sensitivity-range" type="range" min="1" max="10"
+ pref="settings.touchpad.sensitivity" class="touch-slider">
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="speed_factor"></td>
+ <td class="option-value">
+ <input id="speed-range" type="range" min="1" max="10"
+ pref="settings.touchpad.speed_factor" class="touch-slider">
+ </td>
+ </tr>
+ <tr>
+ <td class="option-name" colspan="2"><label><input
+ id="tap-to-click-check"
+ pref="settings.touchpad.enable_tap_to_click"
+ type="checkbox"><span i18n-content="enable_tap_to_click"></span></label></td>
+ </tr>
+ <tr>
+ <td class="option-name" colspan="2"><label><input
+ id="vert-scroll-check"
+ pref="settings.touchpad.enable_vert_edge_scroll"
+ type="checkbox"><span
+ i18n-content="enable_vert_edge_scroll"></span></label></td>
+ </tr>
+ </table>
+ </div>
+ <div class="section">
+ <div class="section-title" i18n-content="language"></div>
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name"><button id="language-button"
+ i18n-content="language_customize"></button>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div class="section">
+ <div class="section-title" i18n-content="accessibility_title"></div>
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name"><label><input id="accesibility-check"
+ pref="settings.accessibility" type="checkbox"><span
+ i18n-content="accessibility"></span></label></td>
+ </tr>
+ </table>
+ </div>
+</div>
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/chromeos_system_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698