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

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

Issue 1758973002: MD Settings: Creating a <settings-dialog> element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove extra blank line Created 4 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 2016 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 'settings-dialog' is a component for showing a modal dialog.
7 *
8 * @group Chrome Settings Elements
9 * @element settings-dialog
10 */
11 Polymer({
12 is: 'settings-dialog',
13
14 properties: {
15 /** @override */
16 modal: {
17 type: Boolean,
18 value: true,
19 },
20 },
21
22 behaviors: [Polymer.PaperDialogBehavior],
23
24 /** @return {!PaperIconButtonElement} */
25 getCloseButton: function() {
26 return this.$.close;
27 },
28 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/settings_dialog.html ('k') | chrome/browser/resources/settings/settings_dialog_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698