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

Unified Diff: runtime/bin/timer_impl.dart

Issue 10883071: - Change "static final" to "static const" in the runtime/ directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
Index: runtime/bin/timer_impl.dart
===================================================================
--- runtime/bin/timer_impl.dart (revision 11416)
+++ runtime/bin/timer_impl.dart (working copy)
@@ -4,10 +4,10 @@
class _Timer implements Timer {
// Set jitter to wake up timer events that would happen in _TIMER_JITTER ms.
- static final int _TIMER_JITTER = 0;
+ static const int _TIMER_JITTER = 0;
// Disables the timer.
- static final int _NO_TIMER = -1;
+ static const int _NO_TIMER = -1;
static Timer _createTimer(void callback(Timer timer),
int milliSeconds,

Powered by Google App Engine
This is Rietveld 408576698