OLD | NEW |
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-downloads-page' is the settings page containing downloads | 7 * 'cr-settings-downloads-page' is the settings page containing downloads |
8 * settings. | 8 * settings. |
9 * | 9 * |
10 * Example: | 10 * Example: |
11 * | 11 * |
12 * <core-animated-pages> | 12 * <iron-animated-pages> |
13 * <cr-settings-downloads-page prefs="{{prefs}}"> | 13 * <cr-settings-downloads-page prefs="{{prefs}}"> |
14 * </cr-settings-downloads-page> | 14 * </cr-settings-downloads-page> |
15 * ... other pages ... | 15 * ... other pages ... |
16 * </core-animated-pages> | 16 * </iron-animated-pages> |
17 * | 17 * |
18 * @group Chrome Settings Elements | 18 * @group Chrome Settings Elements |
19 * @element cr-settings-downloads-page | 19 * @element cr-settings-downloads-page |
20 */ | 20 */ |
21 Polymer('cr-settings-downloads-page', { | 21 Polymer({ |
22 publish: { | 22 is: 'cr-settings-downloads-page', |
| 23 |
| 24 properties: { |
23 /** | 25 /** |
24 * Preferences state. | 26 * Preferences state. |
25 * | 27 * @type {?CrSettingsPrefsElement} |
26 * @attribute prefs | |
27 * @type CrSettingsPrefsElement | |
28 * @default null | |
29 */ | 28 */ |
30 prefs: null, | 29 prefs: { |
| 30 type: Object, |
| 31 notify: true, |
| 32 }, |
31 | 33 |
32 /** | 34 /** |
33 * Route for the page. | 35 * Route for the page. |
34 * | |
35 * @attribute route | |
36 * @type string | |
37 * @default '' | |
38 */ | 36 */ |
39 route: '', | 37 route: String, |
40 | 38 |
41 /** | 39 /** |
42 * Whether the page is a subpage. | 40 * Whether the page is a subpage. |
43 * | |
44 * @attribute subpage | |
45 * @type boolean | |
46 * @default false | |
47 */ | 41 */ |
48 subpage: false, | 42 subpage: Boolean, |
49 | 43 |
50 /** | 44 /** |
51 * ID of the page. | 45 * ID of the page. |
52 * | |
53 * @attribute PAGE_ID | |
54 * @const string | |
55 * @default 'downloads' | |
56 */ | 46 */ |
57 PAGE_ID: 'downloads', | 47 PAGE_ID: { |
| 48 type: String, |
| 49 value: 'downloads', |
| 50 }, |
58 | 51 |
59 /** | 52 /** |
60 * Title for the page header and navigation menu. | 53 * Title for the page header and navigation menu. |
61 * | |
62 * @attribute pageTitle | |
63 * @type string | |
64 */ | 54 */ |
65 pageTitle: loadTimeData.getString('downloadsPageTitle'), | 55 pageTitle: { |
| 56 type: String, |
| 57 value: function() { |
| 58 return loadTimeData.getString('downloadsPageTitle'); |
| 59 }, |
| 60 }, |
66 | 61 |
67 /** | 62 /** |
68 * Name of the 'core-icon' to show. | 63 * Name of the 'iron-icon' to show. |
69 * | |
70 * @attribute icon | |
71 * @type string | |
72 * @default 'file-download' | |
73 */ | 64 */ |
74 icon: 'file-download', | 65 icon: { |
| 66 type: String, |
| 67 value: 'file-download', |
| 68 }, |
75 }, | 69 }, |
76 | 70 |
77 selectDownloadLocation: function() { | 71 /** @private */ |
| 72 selectDownloadLocation_: function() { |
78 // TODO(orenb): Communicate with the C++ to actually display a folder | 73 // TODO(orenb): Communicate with the C++ to actually display a folder |
79 // picker. | 74 // picker. |
80 this.$.downloadsPath.value = '/Downloads'; | 75 this.$.downloadsPath.value = '/Downloads'; |
81 }, | 76 }, |
82 }); | 77 }); |
OLD | NEW |