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

Unified Diff: chrome/browser/resources/settings/a11y_page/a11y_page.html

Issue 1379483003: Rename cr-settings-elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/a11y_page/a11y_page.html
diff --git a/chrome/browser/resources/settings/a11y_page/a11y_page.html b/chrome/browser/resources/settings/a11y_page/a11y_page.html
index 8f705531dad34229ff04c35a143745954b5380ff..bcedcddbed56f087eadef9f136621f811f639618 100644
--- a/chrome/browser/resources/settings/a11y_page/a11y_page.html
+++ b/chrome/browser/resources/settings/a11y_page/a11y_page.html
@@ -1,5 +1,5 @@
<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
-<link rel="import" href="chrome://md-settings/checkbox/checkbox.html">
+<link rel="import" href="chrome://md-settings/settings_checkbox/settings_checkbox.html">
<dom-module id="cr-settings-a11y-page">
<link rel="import" type="css"
@@ -12,31 +12,31 @@
</div>
<if expr="chromeos">
- <cr-settings-checkbox i18n-values="label:optionsInMenuLabel"
+ <settings-checkbox i18n-values="label:optionsInMenuLabel"
pref="{{prefs.settings.a11y.enable_menu}}">
- </cr-settings-checkbox>
- <cr-settings-checkbox i18n-values="label:largeMouseCursorLabel"
+ </settings-checkbox>
+ <settings-checkbox i18n-values="label:largeMouseCursorLabel"
pref="{{prefs.settings.a11y.large_cursor_enabled}}">
- </cr-settings-checkbox>
- <cr-settings-checkbox i18n-values="label:highContrastLabel"
+ </settings-checkbox>
+ <settings-checkbox i18n-values="label:highContrastLabel"
pref="{{prefs.settings.a11y.high_contrast_enabled}}">
- </cr-settings-checkbox>
- <cr-settings-checkbox
+ </settings-checkbox>
+ <settings-checkbox
pref="{{prefs.settings.a11y.sticky_keys_enabled}}"
i18n-values="label:stickyKeysLabel; subLabel:stickyKeysSublabel">
- </cr-settings-checkbox>
- <cr-settings-checkbox pref="{{prefs.settings.accessibility}}"
+ </settings-checkbox>
+ <settings-checkbox pref="{{prefs.settings.accessibility}}"
i18n-values="label:chromeVoxLabel; subLabel:chromeVoxSublabel">
- </cr-settings-checkbox>
- <cr-settings-checkbox i18n-values="label:screenMagnifierLabel"
+ </settings-checkbox>
+ <settings-checkbox i18n-values="label:screenMagnifierLabel"
pref="{{prefs.settings.a11y.screen_magnifier}}">
- </cr-settings-checkbox>
- <cr-settings-checkbox i18n-values="label:tapDraggingLabel"
+ </settings-checkbox>
+ <settings-checkbox i18n-values="label:tapDraggingLabel"
pref="{{prefs.settings.touchpad.enable_tap_dragging}}">
- </cr-settings-checkbox>
- <cr-settings-checkbox i18n-values="label:clickOnStopLabel"
+ </settings-checkbox>
+ <settings-checkbox i18n-values="label:clickOnStopLabel"
pref="{{prefs.settings.a11y.autoclick}}">
- </cr-settings-checkbox>
+ </settings-checkbox>
<div class="autoclick-delay-label"
hidden$="[[!prefs.settings.a11y.autoclick]]">
@@ -56,9 +56,9 @@
</select>
</div>
- <cr-settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}"
+ <settings-checkbox pref="{{prefs.settings.a11y.virtual_keyboard}}"
i18n-values="label:onScreenKeyboardLabel">
- </cr-settings-checkbox>
+ </settings-checkbox>
</if>
</template>
<script src="a11y_page.js"></script>

Powered by Google App Engine
This is Rietveld 408576698