Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1324)

Unified Diff: runtime/lib/date.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/bool.cc ('k') | runtime/lib/developer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « runtime/lib/bool.cc ('k') | runtime/lib/developer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698