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

Side by Side Diff: chrome/browser/resources/settings/a11y_page/a11y_page.html

Issue 1241363002: Settings Rewrite: Make a common settings-section component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0300-webui-settings-structure
Patch Set: Created 5 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
OLDNEW
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma terial.html">
3 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html"> 2 <link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
3 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm l">
4 4
5 <dom-module id="cr-settings-a11y-page"> 5 <dom-module id="cr-settings-a11y-page">
6 <link rel="import" type="css"
7 href="chrome://md-settings/settings_page/settings_page.css">
8 <link rel="import" type="css" href="a11y_page.css"> 6 <link rel="import" type="css" href="a11y_page.css">
9 <template> 7 <template>
10 <paper-material> 8 <cr-settings-section page-title="[[pageTitle]]" icon="[[icon]]">
michaelpg 2015/07/21 22:04:01 Distributing all of the page content to another el
tommycli 2015/07/22 19:06:42 Done.
11 <div class="more-a11y-link"> 9 <div class="more-a11y-link">
12 <a href="https://chrome.google.com/webstore/category/collection/accessib ility" 10 <a href="https://chrome.google.com/webstore/category/collection/accessib ility"
13 target="_blank" i18n-content="moreFeaturesLink"></a> 11 target="_blank" i18n-content="moreFeaturesLink"></a>
14 </div> 12 </div>
15 13
16 <if expr="chromeos"> 14 <if expr="chromeos">
17 <cr-settings-checkbox i18n-values="label:optionsInMenuLabel" 15 <cr-settings-checkbox i18n-values="label:optionsInMenuLabel"
18 pref="{{prefs.settings.a11y.enable_menu}}"> 16 pref="{{prefs.settings.a11y.enable_menu}}">
19 </cr-settings-checkbox> 17 </cr-settings-checkbox>
20 <cr-settings-checkbox i18n-values="label:largeMouseCursorLabel" 18 <cr-settings-checkbox i18n-values="label:largeMouseCursorLabel"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <option value="1000" i18n-content="delayBeforeClickVeryLong"> 54 <option value="1000" i18n-content="delayBeforeClickVeryLong">
57 </option> 55 </option>
58 </select> 56 </select>
59 </div> 57 </div>
60 58
61 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}" 59 <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}"
62 i18n-values="label:onScreenKeyboardLabel"> 60 i18n-values="label:onScreenKeyboardLabel">
63 </cr-settings-checkbox> 61 </cr-settings-checkbox>
64 </if> 62 </if>
65 63
66 </paper-material> 64 </cr-settings-section>
67 </template> 65 </template>
68 <script src="a11y_page.js"></script> 66 <script src="a11y_page.js"></script>
69 </dom-module> 67 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698