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

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: 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..a39ec85c81aec06df2c3ec2668696773a04959ed 100644
--- a/chrome/browser/resources/options2/chromeos/change_picture_options.js
+++ b/chrome/browser/resources/options2/chromeos/change_picture_options.js
@@ -186,7 +186,8 @@ cr.define('options', function() {
*/
get currentUserImageUrl() {
return 'chrome://userimage/' + BrowserOptions.getLoggedInUsername() +
- '?id=' + (new Date()).getTime();
+ '?id=' + (new Date()).getTime() +
+ '&animated=true';
},
/**
@@ -295,4 +296,3 @@ cr.define('options', function() {
};
});
-

Powered by Google App Engine
This is Rietveld 408576698