Add ENABLE_MEDIA_ROUTER define to builds other than Android and iOS.
[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.
10 * Example:
12 * <core-animated-pages>
13 * <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
14 * ... other pages ...
15 * </core-animated-pages>
17 * @group Chrome Settings Elements
18 * @element cr-settings-a11y-page
20 Polymer('cr-settings-a11y-page', {
21 publish: {
22 /**
23 * Preferences state.
25 * @attribute prefs
26 * @type CrSettingsPrefsElement
27 * @default null
29 prefs: null,
31 /**
32 * ID of the page.
34 * @attribute PAGE_ID
35 * @const string
36 * @default 'a11y'
38 PAGE_ID: 'a11y',
40 /**
41 * Title for the page header and navigation menu.
43 * @attribute pageTitle
44 * @type string
46 pageTitle: loadTimeData.getString('a11yPageTitle'),
48 /**
49 * Name of the 'core-icon' to show.
51 * @attribute icon
52 * @type string
53 * @default 'accessibility'
55 icon: 'accessibility',
57 });