зеркало из https://github.com/mozilla/gecko-dev.git
Bug 672207. Add toMicroseconds() for more precision. r=cjones
--HG-- extra : rebase_source : a363b3c67c0cebf72777347e741e2499067c1fa3
This commit is contained in:
Родитель
cfde7f3f39
Коммит
7783f30193
|
@ -78,6 +78,9 @@ public:
|
|||
double ToMilliseconds() const {
|
||||
return ToSeconds() * 1000.0;
|
||||
}
|
||||
double ToMicroseconds() const {
|
||||
return ToMilliseconds() * 1000.0;
|
||||
}
|
||||
|
||||
// Using a double here is safe enough; with 53 bits we can represent
|
||||
// durations up to over 280,000 years exactly. If the units of
|
||||
|
|
Загрузка…
Ссылка в новой задаче