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

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

Issue 267253004: Fetch a new GAIA picture every time chrome://settings/manageProfile comes up. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/options/browser_options.js
diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
index 29fd428e201ac13d440e740154428ce2ba71d1d5..8dbf42fc4c1342a545edada385e5b0300b067b00 100644
--- a/chrome/browser/resources/options/browser_options.js
+++ b/chrome/browser/resources/options/browser_options.js
@@ -248,6 +248,7 @@ cr.define('options', function() {
};
}
$('profiles-manage').onclick = function(event) {
+ chrome.send('refreshGAIAPicture');
Evan Stade 2014/05/07 22:38:55 why isn't this in ManageProfileOverlay.showManageD
noms (inactive) 2014/05/08 01:02:29 showManageDialog is also called by setProfilesInfo
Evan Stade 2014/05/08 01:09:57 seems like the info cache shouldn't be updated if
noms (inactive) 2014/05/08 15:29:06 We would have to do a pixel-by-pixel check when we
Evan Stade 2014/05/14 03:09:55 Are you suggesting that checking the pixels is goi
noms (inactive) 2014/05/20 20:08:57 setProfilesInfo_ calls ManageProfileOverlay.showMa
ManageProfileOverlay.showManageDialog();
};
$('profiles-delete').onclick = function(event) {

Powered by Google App Engine
This is Rietveld 408576698