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

Side by Side Diff: chrome/browser/resources/settings/search_engines_page/search_engines_list.js

Issue 2693253002: MD Settings: Restore Search engines table headers. (Closed)
Patch Set: fx tests Created 3 years, 10 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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698