| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 User pod row implementation. | 6 * @fileoverview User pod row implementation. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 cr.define('login', function() { | 9 cr.define('login', function() { |
| 10 /** | 10 /** |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 * @type {Object.<string, !HTMLDivElement>} | 1130 * @type {Object.<string, !HTMLDivElement>} |
| 1131 */ | 1131 */ |
| 1132 get statsMapElements() { | 1132 get statsMapElements() { |
| 1133 return { | 1133 return { |
| 1134 'BrowsingHistory': | 1134 'BrowsingHistory': |
| 1135 this.querySelector('.action-box-remove-user-warning-history'), | 1135 this.querySelector('.action-box-remove-user-warning-history'), |
| 1136 'Passwords': | 1136 'Passwords': |
| 1137 this.querySelector('.action-box-remove-user-warning-passwords'), | 1137 this.querySelector('.action-box-remove-user-warning-passwords'), |
| 1138 'Bookmarks': | 1138 'Bookmarks': |
| 1139 this.querySelector('.action-box-remove-user-warning-bookmarks'), | 1139 this.querySelector('.action-box-remove-user-warning-bookmarks'), |
| 1140 'Settings': | 1140 'Autofill': |
| 1141 this.querySelector('.action-box-remove-user-warning-settings') | 1141 this.querySelector('.action-box-remove-user-warning-autofill') |
| 1142 } | 1142 } |
| 1143 }, | 1143 }, |
| 1144 | 1144 |
| 1145 /** | 1145 /** |
| 1146 * Gets the fingerprint icon area. | 1146 * Gets the fingerprint icon area. |
| 1147 * @type {!HTMLDivElement} | 1147 * @type {!HTMLDivElement} |
| 1148 */ | 1148 */ |
| 1149 get fingerprintIconElement() { | 1149 get fingerprintIconElement() { |
| 1150 return this.querySelector('.fingerprint-icon-container'); | 1150 return this.querySelector('.fingerprint-icon-container'); |
| 1151 }, | 1151 }, |
| (...skipping 3334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4486 if (pod && pod.multiProfilesPolicyApplied) { | 4486 if (pod && pod.multiProfilesPolicyApplied) { |
| 4487 pod.userTypeBubbleElement.classList.remove('bubble-shown'); | 4487 pod.userTypeBubbleElement.classList.remove('bubble-shown'); |
| 4488 } | 4488 } |
| 4489 } | 4489 } |
| 4490 }; | 4490 }; |
| 4491 | 4491 |
| 4492 return { | 4492 return { |
| 4493 PodRow: PodRow | 4493 PodRow: PodRow |
| 4494 }; | 4494 }; |
| 4495 }); | 4495 }); |
| OLD | NEW |