Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe_a11n_option.js |
| diff --git a/chrome/browser/resources/chromeos/login/oobe_dialog.js b/chrome/browser/resources/chromeos/login/oobe_a11n_option.js |
| similarity index 55% |
| copy from chrome/browser/resources/chromeos/login/oobe_dialog.js |
| copy to chrome/browser/resources/chromeos/login/oobe_a11n_option.js |
| index 2a1e08369107d41e3db4fc7be9cf090be1889874..740d5205bc6a7a07f3741c4e67c7aa33e06c597f 100644 |
| --- a/chrome/browser/resources/chromeos/login/oobe_dialog.js |
| +++ b/chrome/browser/resources/chromeos/login/oobe_a11n_option.js |
| @@ -3,15 +3,23 @@ |
| // found in the LICENSE file. |
| Polymer({ |
| - is: 'oobe-dialog', |
| + is: 'oobe-a11y-option', |
|
michaelpg
2016/08/09 20:33:08
should match file name
Alexander Alekseev
2016/08/10 04:03:46
Done.
|
| properties: { |
| /** |
| - * Controls visibility of the bottom-buttons element. |
| + * If polymer-toggle-button is checked. |
| */ |
| - hasButtons: { |
| + checked: { |
| type: Boolean, |
| value: false, |
|
michaelpg
2016/08/09 20:33:08
consider leaving off the default value -- it alway
Alexander Alekseev
2016/08/10 04:03:46
Done.
|
| }, |
| + |
| + /** |
| + * Chrome message handling this option. |
| + */ |
| + chromeMessage: { |
| + type: String, |
| + value: null, |
| + }, |
| }, |
| }); |