aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-content__browser__indexed_db__indexed_db_backing_store.cc
blob: 87e6c61ddaebedbbdb302f7b3bb9828faec6ef53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- ./content/browser/indexed_db/indexed_db_backing_store.cc.orig	2014-08-20 21:02:48.000000000 +0200
+++ ./content/browser/indexed_db/indexed_db_backing_store.cc	2014-08-24 10:58:24.000000000 +0200
@@ -2329,7 +2329,7 @@
         // The round-trip can be lossy; round to nearest millisecond.
         int64 delta = (descriptor.last_modified() -
             info.last_modified).InMilliseconds();
-        if (std::abs(delta) > 1)
+        if (std::labs(delta) > 1)
           return false;
       }
       if (!base::TouchFile(path, info.last_accessed, info.last_modified)) {