Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / resources / settings / a11y_page / a11y_page.js
blob119f1c75a8eaff70e9f07325c2e7467d53b4823a
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * @fileoverview
7  * 'cr-settings-a11y-page' is the settings page containing accessibility
8  * settings.
9  *
10  * Example:
11  *
12  *    <iron-animated-pages>
13  *      <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
14  *      ... other pages ...
15  *    </iron-animated-pages>
16  *
17  * @group Chrome Settings Elements
18  * @element cr-settings-a11y-page
19  */
20 Polymer({
21   is: 'cr-settings-a11y-page',
23   properties: {
24     /**
25      * Preferences state.
26      */
27     prefs: {
28       type: Object,
29       notify: true,
30     },
32     /**
33      * Route for the page.
34      */
35     route: String,
37     /**
38      * Whether the page is a subpage.
39      */
40     subpage: {
41       type: Boolean,
42       value: false,
43       readOnly: true,
44     },
46     /**
47      * ID of the page.
48      */
49     PAGE_ID: {
50       type: String,
51       value: 'a11y',
52       readOnly: true,
53     },
55     /**
56      * Title for the page header and navigation menu.
57      */
58     pageTitle: {
59       type: String,
60       value: function() { return loadTimeData.getString('a11yPageTitle'); },
61     },
63     /**
64      * Name of the 'iron-icon' to show.
65      */
66     icon: {
67       type: String,
68       value: 'accessibility',
69       readOnly: true,
70     },
71   },
72 });