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

Side by Side Diff: chrome/browser/resources/settings/site_settings/all_sites.js

Issue 2580653003: [MD settings] remove selectedSite property (Closed)
Patch Set: nits Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 * 'all-sites' is the polymer element for showing the list of all sites under 7 * 'all-sites' is the polymer element for showing the list of all sites under
8 * Site Settings. 8 * Site Settings.
9 */ 9 */
10 Polymer({ 10 Polymer({
11 is: 'all-sites', 11 is: 'all-sites',
12 12
13 behaviors: [SiteSettingsBehavior], 13 behaviors: [SiteSettingsBehavior],
14
15 properties: {
16 /**
17 * The site that was selected by the user in the dropdown list.
18 * @type {SiteException}
19 */
20 selectedSite: {
21 type: Object,
22 notify: true,
23 },
24 },
25 }); 14 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698