Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: chrome/browser/resources/settings/a11y_page/a11y_page.js

Issue 986843002: Scaffold for MD-Settings, inside chrome://md-settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add to chrome://md-settings Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * 'cr-settings-a11y-page' is the settings page containing accessibility 7 * 'cr-settings-a11y-page' is the settings page containing accessibility
8 * settings. 8 * settings.
9 * 9 *
10 * Example: 10 * Example:
11 * 11 *
12 * <core-animated-pages> 12 * <core-animated-pages>
13 * <cr-settings-a11y-page></cr-settings-a11y-page> 13 * <cr-settings-a11y-page></cr-settings-a11y-page>
14 * ... other pages ... 14 * ... other pages ...
15 * </core-animated-pages> 15 * </core-animated-pages>
16 * 16 *
17 * @group Chrome Settings Elements 17 * @group Chrome Settings Elements
18 * @element cr-settings-a11y-page 18 * @element cr-settings-a11y-page
19 * @extends cr-settings-page
19 */ 20 */
20 Polymer('cr-settings-a11y-page', { 21 Polymer('cr-settings-a11y-page', {
21 publish: { 22 /** @override */
22 /** 23 pageTitle: 'Accessibility',
23 * Preferences state. 24
24 * 25 /** @override */
25 * @attribute prefs 26 navTitle: 'Accessibility',
26 * @type CrSettingsPrefsElement 27
27 * @default null 28 /** @override */
28 */ 29 icon: 'accessibility',
29 prefs: null,
30 },
31 }); 30 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698