Bug 718738 - Send all StartupInfo values in telemetry ping. r=tglek

This commit is contained in:
Mike Hommey 2012-02-20 08:04:28 +01:00
parent e759b047fb
commit 50bdfc4076

View File

@ -117,8 +117,8 @@ function getSimpleMeasurements() {
} catch (ex) {}
if (si.process) {
for each (let field in ["main", "firstPaint", "sessionRestored"]) {
if (!(field in si))
for each (let field in Object.keys(si))]) {
if (field == "process")
continue;
ret[field] = si[field] - si.process
}