Chromium Code Reviews| 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: { |
|
michaelpg
2015/05/12 05:52:14
I'm probably just out of the loop, but what's the
Jeremy Klein
2015/05/12 06:19:27
In this case, no reason. Done.
FWIW there is a su
michaelpg
2015/05/12 06:50:19
I don't see this behavior -- either way, for me, t
| |
| 38 type: String, | |
| 39 value: '', | |
| 40 }, | |
| 40 | 41 |
| 41 /** | 42 /** |
| 42 * Whether the page is a subpage. | 43 * Whether the page is a subpage. |
| 43 * | |
| 44 * @attribute subpage | |
| 45 * @type boolean | |
| 46 * @default false | |
| 47 */ | 44 */ |
| 48 subpage: false, | 45 subpage: { |
| 46 type: Boolean, | |
| 47 value: false, | |
| 48 }, | |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * ID of the page. | 51 * ID of the page. |
| 52 * | |
| 53 * @attribute PAGE_ID | |
| 54 * @const string | |
| 55 * @default 'downloads' | |
| 56 */ | 52 */ |
| 57 PAGE_ID: 'downloads', | 53 PAGE_ID: { |
| 54 type: String, | |
| 55 value: 'downloads', | |
| 56 }, | |
| 58 | 57 |
| 59 /** | 58 /** |
| 60 * Title for the page header and navigation menu. | 59 * Title for the page header and navigation menu. |
| 61 * | |
| 62 * @attribute pageTitle | |
| 63 * @type string | |
| 64 */ | 60 */ |
| 65 pageTitle: loadTimeData.getString('downloadsPageTitle'), | 61 pageTitle: { |
| 62 type: String, | |
| 63 value: function() { | |
| 64 return loadTimeData.getString('downloadsPageTitle'); | |
| 65 }, | |
| 66 }, | |
| 66 | 67 |
| 67 /** | 68 /** |
| 68 * Name of the 'core-icon' to show. | 69 * Name of the 'core-icon' to show. |
|
michaelpg
2015/05/12 05:52:14
iron-icon
Jeremy Klein
2015/05/12 06:19:27
Done.
| |
| 69 * | |
| 70 * @attribute icon | |
| 71 * @type string | |
| 72 * @default 'file-download' | |
| 73 */ | 70 */ |
| 74 icon: 'file-download', | 71 icon: { |
| 72 type: String, | |
| 73 value: 'file-download', | |
| 74 }, | |
| 75 }, | 75 }, |
| 76 | 76 |
| 77 selectDownloadLocation: function() { | 77 /** @private */ |
| 78 selectDownloadLocation_: function() { | |
| 78 // TODO(orenb): Communicate with the C++ to actually display a folder | 79 // TODO(orenb): Communicate with the C++ to actually display a folder |
| 79 // picker. | 80 // picker. |
| 80 this.$.downloadsPath.value = '/Downloads'; | 81 this.$.downloadsPath.value = '/Downloads'; |
| 81 }, | 82 }, |
| 82 }); | 83 }); |
| OLD | NEW |