diff options
author | Tom Ritter <tom@mozilla.com> | 2018-02-20 12:18:30 -0600 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-03-14 11:27:26 +0100 |
commit | a32b7f7c4e4e31669e0787e6321d74e4db71e514 (patch) | |
tree | e83acb2eb895162f010e7ff9ee2d39548c4d90b4 /dom/base/MultipartBlobImpl.cpp | |
parent | bd819cc43653220abdbfe040ba5c721e9861241c (diff) | |
download | UXP-a32b7f7c4e4e31669e0787e6321d74e4db71e514.tar UXP-a32b7f7c4e4e31669e0787e6321d74e4db71e514.tar.gz UXP-a32b7f7c4e4e31669e0787e6321d74e4db71e514.tar.lz UXP-a32b7f7c4e4e31669e0787e6321d74e4db71e514.tar.xz UXP-a32b7f7c4e4e31669e0787e6321d74e4db71e514.zip |
Bug 1430173 - Reduce the precision of all explicit clocks to 2ms. r=baku, a=RyanVM
Backport to ESR where we don't have the ResistFingerprinting component.
MozReview-Commit-ID: 9bjycHjR3SF
--HG--
extra : transplant_source : %EA%03%21%0A%E9%3F%8E%CD%7C%D79f%96%85%96%00%5D%7F%95X
Diffstat (limited to 'dom/base/MultipartBlobImpl.cpp')
-rwxr-xr-x[-rw-r--r--] | dom/base/MultipartBlobImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/base/MultipartBlobImpl.cpp b/dom/base/MultipartBlobImpl.cpp index ba26d07f9..03bb62add 100644..100755 --- a/dom/base/MultipartBlobImpl.cpp +++ b/dom/base/MultipartBlobImpl.cpp @@ -17,6 +17,7 @@ #include "nsContentUtils.h" #include "nsIScriptError.h" #include "nsIXPConnect.h" +#include "mozilla/TimerClamping.h" #include <algorithm> using namespace mozilla; @@ -270,8 +271,7 @@ MultipartBlobImpl::SetLengthAndModifiedDate(ErrorResult& aRv) // var x = new Date(); var f = new File(...); // x.getTime() < f.dateModified.getTime() // could fail. - mLastModificationDate = - lastModifiedSet ? lastModified * PR_USEC_PER_MSEC : JS_Now(); + mLastModificationDate = TimerClamping::ReduceUsTimeValue(lastModifiedSet ? lastModified * PR_USEC_PER_MSEC : JS_Now()); } } |