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

Unified Diff: chrome/browser/resources/options2/chromeos/change_picture_options.js

Issue 10830157: [cros] Disable GIF user images. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/chromeos/change_picture_options.js
diff --git a/chrome/browser/resources/options2/chromeos/change_picture_options.js b/chrome/browser/resources/options2/chromeos/change_picture_options.js
index 70b8d78f4208ea4de920e14a016d9c5d6cdee0bf..66c302113f239a6d45b3f8f0c6871ad6b8c7155b 100644
--- a/chrome/browser/resources/options2/chromeos/change_picture_options.js
+++ b/chrome/browser/resources/options2/chromeos/change_picture_options.js
@@ -415,7 +415,7 @@ cr.define('options', function() {
*/
get currentUserImageUrl() {
return 'chrome://userimage/' + BrowserOptions.getLoggedInUsername() +
- '?id=' + (new Date()).getTime() + '&animated';
+ '?id=' + new Date().getTime();
},
/**

Powered by Google App Engine
This is Rietveld 408576698