Chromium Code Reviews| Index: chrome/browser/resources/options/password_manager.js |
| diff --git a/chrome/browser/resources/options/password_manager.js b/chrome/browser/resources/options/password_manager.js |
| index ac3fc3aa67bfa2a750755578e0db3239dcb96ab5..4d0796f37986a5704d0458d3595d9f09482b2211 100644 |
| --- a/chrome/browser/resources/options/password_manager.js |
| +++ b/chrome/browser/resources/options/password_manager.js |
| @@ -46,7 +46,11 @@ cr.define('options', function() { |
| this.createSavedPasswordsList_(); |
| this.createPasswordExceptionsList_(); |
| + }, |
| + didShowPage: function() { |
|
stuartmorgan
2011/01/21 00:23:37
/** @inheritDoc */
James Hawkins
2011/01/21 00:37:33
Done.
|
| + // Updating the password lists may cause a blocking platform dialog pop up |
| + // (Mac, Linux), so we delay this operation until the page is shown. |
| chrome.send('updatePasswordLists'); |
|
stuartmorgan
2011/01/21 00:23:37
I assume this is okay to call more than once?
James Hawkins
2011/01/21 00:37:33
Correct.
|
| }, |