| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 cr.define('options.passwordManager', function() { | 5 cr.define('options.passwordManager', function() { |
| 6 /** @const */ var ArrayDataModel = cr.ui.ArrayDataModel; | 6 /** @const */ var ArrayDataModel = cr.ui.ArrayDataModel; |
| 7 /** @const */ var DeletableItemList = options.DeletableItemList; | 7 /** @const */ var DeletableItemList = options.DeletableItemList; |
| 8 /** @const */ var DeletableItem = options.DeletableItem; | 8 /** @const */ var DeletableItem = options.DeletableItem; |
| 9 /** @const */ var List = cr.ui.List; | 9 /** @const */ var List = cr.ui.List; |
| 10 | 10 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 /** | 90 /** |
| 91 * Helper function that creates an HTML element for displaying the origin of | 91 * Helper function that creates an HTML element for displaying the origin of |
| 92 * saved password. It also sets some properties in |item|. | 92 * saved password. It also sets some properties in |item|. |
| 93 * @param {Object} item A dictionary of data on the list item. | 93 * @param {Object} item A dictionary of data on the list item. |
| 94 * @return {Element} The element for displaying the origin of saved password. | 94 * @return {Element} The element for displaying the origin of saved password. |
| 95 */ | 95 */ |
| 96 function createUrlDiv(item) { | 96 function createUrlDiv(item) { |
| 97 var urlDiv = cr.doc.createElement('div'); | 97 var urlDiv = cr.doc.createElement('div'); |
| 98 urlDiv.className = 'favicon-cell url'; | 98 urlDiv.className = 'favicon-cell url'; |
| 99 urlDiv.setAttribute('title', getTitleForPasswordOrigin(item)); | 99 urlDiv.setAttribute('title', getTitleForPasswordOrigin(item)); |
| 100 urlDiv.style.backgroundImage = cr.icon.getFavicon('origin/' + item.url); | 100 urlDiv.style.backgroundImage = cr.icon.getFavicon(item.url); |
| 101 | 101 |
| 102 item.urlLink = createUrlLink(item, urlDiv); | 102 item.urlLink = createUrlLink(item, urlDiv); |
| 103 urlDiv.appendChild(item.urlLink); | 103 urlDiv.appendChild(item.urlLink); |
| 104 | 104 |
| 105 if (item.isAndroidUri && item.isClickable) { | 105 if (item.isAndroidUri && item.isClickable) { |
| 106 item.androidUriSuffix = cr.doc.createElement('span'); | 106 item.androidUriSuffix = cr.doc.createElement('span'); |
| 107 item.androidUriSuffix.textContent = | 107 item.androidUriSuffix.textContent = |
| 108 loadTimeData.getString('androidUriSuffix'); | 108 loadTimeData.getString('androidUriSuffix'); |
| 109 urlDiv.appendChild(item.androidUriSuffix); | 109 urlDiv.appendChild(item.androidUriSuffix); |
| 110 } | 110 } |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 SHOWN_ORIGIN_FIELD: SHOWN_ORIGIN_FIELD, | 544 SHOWN_ORIGIN_FIELD: SHOWN_ORIGIN_FIELD, |
| 545 IS_ANDROID_URI_FIELD: IS_ANDROID_URI_FIELD, | 545 IS_ANDROID_URI_FIELD: IS_ANDROID_URI_FIELD, |
| 546 IS_CLICKABLE_FIELD: IS_CLICKABLE_FIELD, | 546 IS_CLICKABLE_FIELD: IS_CLICKABLE_FIELD, |
| 547 IS_SECURE_FIELD: IS_SECURE_FIELD, | 547 IS_SECURE_FIELD: IS_SECURE_FIELD, |
| 548 USERNAME_FIELD: USERNAME_FIELD, | 548 USERNAME_FIELD: USERNAME_FIELD, |
| 549 PASSWORD_FIELD: PASSWORD_FIELD, | 549 PASSWORD_FIELD: PASSWORD_FIELD, |
| 550 FEDERATION_FIELD: FEDERATION_FIELD, | 550 FEDERATION_FIELD: FEDERATION_FIELD, |
| 551 ORIGINAL_INDEX_FIELD: ORIGINAL_INDEX_FIELD | 551 ORIGINAL_INDEX_FIELD: ORIGINAL_INDEX_FIELD |
| 552 }; | 552 }; |
| 553 }); | 553 }); |
| OLD | NEW |