| 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-appearance-page' is the settings page containing appearance | 7 * 'cr-settings-appearance-page' is the settings page containing appearance |
| 8 * settings. | 8 * settings. |
| 9 * | 9 * |
| 10 * Example: | 10 * Example: |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 /** | 66 /** |
| 67 * Name of the 'iron-icon' to show. | 67 * Name of the 'iron-icon' to show. |
| 68 */ | 68 */ |
| 69 icon: { | 69 icon: { |
| 70 type: String, | 70 type: String, |
| 71 value: 'home', | 71 value: 'home', |
| 72 readOnly: true, | 72 readOnly: true, |
| 73 }, | 73 }, |
| 74 }, | 74 }, |
| 75 |
| 76 /** @private */ |
| 77 openThemesGallery_: function() { |
| 78 window.open(loadTimeData.getString('themesGalleryUrl')); |
| 79 }, |
| 75 }); | 80 }); |
| OLD | NEW |