| 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 'settings-search-engines-list' is a component for showing a | 6 * @fileoverview 'settings-search-engines-list' is a component for showing a |
| 7 * list of search engines. | 7 * list of search engines. |
| 8 */ | 8 */ |
| 9 Polymer({ | 9 Polymer({ |
| 10 is: 'settings-search-engines-list', | 10 is: 'settings-search-engines-list', |
| 11 | 11 |
| 12 behaviors: [settings.GlobalScrollTargetBehavior], | 12 behaviors: [settings.GlobalScrollTargetBehavior], |
| 13 | 13 |
| 14 properties: { | 14 properties: { |
| 15 /** @type {!Array<!SearchEngine>} */ | 15 /** @type {!Array<!SearchEngine>} */ |
| 16 engines: Array, | 16 engines: Array, |
| 17 | 17 |
| 18 /** @override */ | 18 /** @override */ |
| 19 subpageRoute: { | 19 subpageRoute: { |
| 20 type: Object, | 20 type: Object, |
| 21 value: settings.Route.SEARCH_ENGINES, | 21 value: settings.Route.SEARCH_ENGINES, |
| 22 }, | 22 }, |
| 23 |
| 24 /** Whether column headers should be displayed */ |
| 25 hideHeaders: Boolean, |
| 23 }, | 26 }, |
| 24 }); | 27 }); |
| OLD | NEW |