| Index: runtime/lib/date.cc
|
| diff --git a/runtime/lib/date.cc b/runtime/lib/date.cc
|
| index 67891b9fcb45622f684714b12c33065fb72eb954..aee94804e09dc93613d875bb46c77c970d425b8a 100644
|
| --- a/runtime/lib/date.cc
|
| +++ b/runtime/lib/date.cc
|
| @@ -44,8 +44,8 @@ DEFINE_NATIVE_ENTRY(DateNatives_localTimeZoneAdjustmentInSeconds, 0) {
|
| }
|
|
|
|
|
| -DEFINE_NATIVE_ENTRY(DateNatives_currentTimeMillis, 0) {
|
| - return Integer::New(OS::GetCurrentTimeMillis());
|
| +DEFINE_NATIVE_ENTRY(DateNatives_currentTimeMicros, 0) {
|
| + return Integer::New(OS::GetCurrentTimeMicros());
|
| }
|
|
|
| } // namespace dart
|
|
|