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

Unified Diff: chrome/browser/resources/chromeos/login/oobe_a11y_option.html

Issue 2223213003: ChromeOS: Implement Accessibility Options screen of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit. Created 4 years, 4 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/chromeos/login/oobe_a11y_option.html
diff --git a/chrome/browser/resources/chromeos/login/oobe_a11y_option.html b/chrome/browser/resources/chromeos/login/oobe_a11y_option.html
new file mode 100644
index 0000000000000000000000000000000000000000..502e5d69fb232d7de2b641feef6de94054814ac5
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_a11y_option.html
@@ -0,0 +1,22 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classes/iron-flex-layout.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/paper-toggle-button.html">
+
+<dom-module name="oobe-a11y-option">
+ <template>
+ <div class="layout horizontal">
+ <div id="labelContainer" class="flex layout vertical">
+ <div id="titleContainer">
+ <content select=".title"></content>
+ </div>
+ <div class="display-value" hidden="[[!checked]]">
+ <content select=".checked-value"></content>
+ </div>
+ <div class="display-value" hidden="[[checked]]">
+ <content select=".unchecked-value"></content>
+ </div>
+ </div>
+ <paper-toggle-button checked="{{checked}}"></paper-toggle-button>
+ </div>
+ </template>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe.js ('k') | chrome/browser/resources/chromeos/login/oobe_a11y_option.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698