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

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

Issue 10454044: Added support for animated/nonanimated user image. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added clarifying comment. Created 8 years, 7 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 abdfa63f9ab6f32ca854493969417a1bcbb22c7e..87bb16ac9467f20a2344fefa8c2eeb5a14500e28 100644
--- a/chrome/browser/resources/options2/chromeos/change_picture_options.js
+++ b/chrome/browser/resources/options2/chromeos/change_picture_options.js
@@ -186,7 +186,7 @@ cr.define('options', function() {
*/
get currentUserImageUrl() {
return 'chrome://userimage/' + BrowserOptions.getLoggedInUsername() +
- '?id=' + (new Date()).getTime();
+ '?id=' + (new Date()).getTime() + '&animated';
},
/**
@@ -295,4 +295,3 @@ cr.define('options', function() {
};
});
-

Powered by Google App Engine
This is Rietveld 408576698