| Index: src/runtime/runtime-date.cc
|
| diff --git a/src/runtime/runtime-date.cc b/src/runtime/runtime-date.cc
|
| index 614b4a9ede9199518ccbe7ae380dfd974c776114..7d929d0d79ef025e1ff66b9fbb671d73a3ed8c47 100644
|
| --- a/src/runtime/runtime-date.cc
|
| +++ b/src/runtime/runtime-date.cc
|
| @@ -88,8 +88,7 @@ RUNTIME_FUNCTION(Runtime_DateCurrentTime) {
|
| // the OS time.
|
| double millis;
|
| if (FLAG_verify_predictable) {
|
| - millis = 1388534400000.0; // Jan 1 2014 00:00:00 GMT+0000
|
| - millis += Floor(isolate->heap()->synthetic_time());
|
| + millis = Floor(isolate->heap()->MonotonicallyIncreasingTimeInMs());
|
| } else {
|
| millis = Floor(base::OS::TimeCurrentMillis());
|
| }
|
|
|