| Index: chrome/browser/resources/feedback/js/feedback.js
|
| diff --git a/chrome/browser/resources/feedback/js/feedback.js b/chrome/browser/resources/feedback/js/feedback.js
|
| index e6db735affc4c9f991edc65f2c216433fe2eea8a..8d8d32c5142fa761ce5d566757c90001293b3b9d 100644
|
| --- a/chrome/browser/resources/feedback/js/feedback.js
|
| +++ b/chrome/browser/resources/feedback/js/feedback.js
|
| @@ -259,8 +259,6 @@ function onSystemInformation(sysInfo) {
|
| sysInfoPageOnSysInfoReadyCallback(feedbackInfo.systemInformation);
|
| sysInfoPageOnSysInfoReadyCallback = null;
|
| }
|
| -
|
| - setOnSystemInfoReadyCallback(null);
|
| }
|
|
|
| /**
|
| @@ -302,12 +300,9 @@ function initialize() {
|
| $('user-email-text').value = email;
|
| });
|
|
|
| - // Prepare the full system information if available or do this later once
|
| - // it becomes available.
|
| - if (isSystemInfoReady())
|
| - onSystemInformation(getSystemInformation());
|
| - else
|
| - setOnSystemInfoReadyCallback(onSystemInformation);
|
| + // Initiate getting the system info and use it to prepare the full
|
| + // feedback info.
|
| + getSystemInformation(onSystemInformation);
|
|
|
| // An extension called us with an attached file.
|
| if (feedbackInfo.attachedFile) {
|
|
|