зеркало из https://github.com/mozilla/gecko-dev.git
Bug 649842 - Generate real unique values, instead of relying on Math.random() to generate unique values, which will lead into intermittent oranges; r=zpao
This commit is contained in:
Родитель
6dd48e75f1
Коммит
423e731fcb
|
@ -99,6 +99,7 @@ function waitForSaveState(aSaveStateCallback) {
|
|||
}, topic, false);
|
||||
};
|
||||
|
||||
var gUniqueCounter = 0;
|
||||
function r() {
|
||||
return Date.now() + Math.random();
|
||||
return Date.now() + "-" + (++gUniqueCounter);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче