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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_page_header.js

Issue 1007803003: Polymer Settings Scaffold in MD-Settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Scaffold2
Patch Set: 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
(Empty)
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.
4
5 /**
6 * @fileoverview
7 * 'cr-settings-page-header' shows a basic heading with a 'core-icon'.
8 *
9 * Example:
10 *
11 * <cr-settings-page-header page="{{page}}">
12 * </cr-settings-page-header>
13 *
14 * @group Chrome Settings Elements
15 * @element cr-settings-page-header
16 */
17 Polymer('cr-settings-page-header', {
18 publish: {
19 /**
20 * Page to show a header for.
21 *
22 * @attribute page
23 * @type Object
24 * @default null
25 */
26 page: null,
27 },
28 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698