| Index: chrome/browser/resources/settings/a11y_page/a11y_page.js
|
| diff --git a/chrome/browser/resources/settings/a11y_page/a11y_page.js b/chrome/browser/resources/settings/a11y_page/a11y_page.js
|
| index 0af1e678887ab875715b2f240de20f4e02f4fe01..71f2184bc7c46b61a24d599e35dc0ed8ffbf1cbf 100644
|
| --- a/chrome/browser/resources/settings/a11y_page/a11y_page.js
|
| +++ b/chrome/browser/resources/settings/a11y_page/a11y_page.js
|
| @@ -10,7 +10,7 @@
|
| * Example:
|
| *
|
| * <core-animated-pages>
|
| - * <cr-settings-a11y-page></cr-settings-a11y-page>
|
| + * <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
|
| * ... other pages ...
|
| * </core-animated-pages>
|
| *
|
| @@ -27,5 +27,32 @@ Polymer('cr-settings-a11y-page', {
|
| * @default null
|
| */
|
| prefs: null,
|
| +
|
| + /**
|
| + * ID of the page.
|
| + *
|
| + * @attribute PAGE_ID
|
| + * @const string
|
| + * @default 'a11y'
|
| + */
|
| + PAGE_ID: 'a11y',
|
| +
|
| + /**
|
| + * Title for the page header and navigation menu.
|
| + *
|
| + * @attribute pageTitle
|
| + * @type string
|
| + * @default 'Accessibility'
|
| + */
|
| + pageTitle: 'Accessibility',
|
| +
|
| + /**
|
| + * Name of the 'core-icon' to show.
|
| + *
|
| + * @attribute icon
|
| + * @type string
|
| + * @default 'accessibility'
|
| + */
|
| + icon: 'accessibility',
|
| },
|
| });
|
|
|