[Extensions] Make extension message bubble factory platform-abstract
[chromium-blink-merge.git] / chrome / browser / resources / settings / a11y_page / a11y_page.js
blob41810048345eb0ba4012b89786fc2920468d27d1
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  *    <core-animated-pages>
13  *      <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
14  *      ... other pages ...
15  *    </core-animated-pages>
16  *
17  * @group Chrome Settings Elements
18  * @element cr-settings-a11y-page
19  */
20 Polymer('cr-settings-a11y-page', {
21   publish: {
22     /**
23      * Preferences state.
24      *
25      * @attribute prefs
26      * @type CrSettingsPrefsElement
27      * @default null
28      */
29     prefs: null,
31     /**
32      * ID of the page.
33      *
34      * @attribute PAGE_ID
35      * @const string
36      * @default 'a11y'
37      */
38     PAGE_ID: 'a11y',
40     /**
41      * Title for the page header and navigation menu.
42      *
43      * @attribute pageTitle
44      * @type string
45      */
46     pageTitle: loadTimeData.getString('a11yPageTitle'),
48     /**
49      * Name of the 'core-icon' to show.
50      *
51      * @attribute icon
52      * @type string
53      * @default 'accessibility'
54      */
55     icon: 'accessibility',
56   },
57 });