| Index: runtime/lib/date.cc
|
| diff --git a/runtime/lib/date.cc b/runtime/lib/date.cc
|
| index 137652b8bd8fdaf248e50904879e7af340d43847..3f694d35616e324b638e09cd41cc1299527ed899 100644
|
| --- a/runtime/lib/date.cc
|
| +++ b/runtime/lib/date.cc
|
| @@ -25,7 +25,6 @@ DEFINE_NATIVE_ENTRY(DateTime_timeZoneName, 1) {
|
| return String::New(name);
|
| }
|
|
|
| -
|
| DEFINE_NATIVE_ENTRY(DateTime_timeZoneOffsetInSeconds, 1) {
|
| GET_NON_NULL_NATIVE_ARGUMENT(Integer, dart_seconds,
|
| arguments->NativeArgAt(0));
|
| @@ -37,13 +36,11 @@ DEFINE_NATIVE_ENTRY(DateTime_timeZoneOffsetInSeconds, 1) {
|
| return Integer::New(offset);
|
| }
|
|
|
| -
|
| DEFINE_NATIVE_ENTRY(DateTime_localTimeZoneAdjustmentInSeconds, 0) {
|
| int adjustment = OS::GetLocalTimeZoneAdjustmentInSeconds();
|
| return Integer::New(adjustment);
|
| }
|
|
|
| -
|
| DEFINE_NATIVE_ENTRY(DateTime_currentTimeMicros, 0) {
|
| return Integer::New(OS::GetCurrentTimeMicros());
|
| }
|
|
|