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

Unified Diff: chrome/browser/resources/options/manage_profile_overlay.js

Issue 100073004: Fix issues with supervised user recreation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing imageset statements. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/manage_profile_overlay.js
diff --git a/chrome/browser/resources/options/manage_profile_overlay.js b/chrome/browser/resources/options/manage_profile_overlay.js
index 50ce6ef4e67f4d98111d6c675b8c92fcd83f79a2..c12df530b6c9b4ef560330411b03b4008617cdfb 100644
--- a/chrome/browser/resources/options/manage_profile_overlay.js
+++ b/chrome/browser/resources/options/manage_profile_overlay.js
@@ -415,8 +415,8 @@ cr.define('options', function() {
$('manage-profile-overlay-delete').hidden = false;
$('delete-profile-message').textContent =
loadTimeData.getStringF('deleteProfileMessage', profileInfo.name);
- $('delete-profile-message').style.backgroundImage = 'url("' +
- profileInfo.iconURL + '")';
+ $('delete-profile-message').style.backgroundImage =
+ imageset(profileInfo.iconURL + '@scalefactorx');
$('delete-managed-profile-addendum').hidden = !profileInfo.isManaged;
// Because this dialog isn't useful when refreshing or as part of the

Powered by Google App Engine
This is Rietveld 408576698