[sql] Remove _HAS_EXCEPTIONS=0 from build info.
[chromium-blink-merge.git] / chrome / browser / resources / settings / settings_page / settings_section.js
blob476754a32e4d94e72614efe8658e09741a3dc374
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-section' shows a paper material themed section with a header
8 * which shows its page title and icon.
10 * Example:
12 * <cr-settings-section page-title="[[pageTitle]]" icon="[[icon]]">
13 * <!-- Insert your section controls here -->
14 * </cr-settings-section>
16 * @group Chrome Settings Elements
17 * @element cr-settings-section
19 Polymer({
20 is: 'cr-settings-section',
22 properties: {
23 /**
24 * Title for the page header and navigation menu.
26 pageTitle: String,
28 /**
29 * Name of the 'iron-icon' to show.
31 icon: String,
33 });