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

Unified Diff: runtime/bin/timer_impl.dart

Issue 9289042: Minor changes to the dart:io library files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
diff --git a/runtime/bin/timer_impl.dart b/runtime/bin/timer_impl.dart
index 3a3d8d7208a18d983de431598405d3550b1b4b82..8274cf04f864baa74d31d6390662e42483bc2245 100644
--- a/runtime/bin/timer_impl.dart
+++ b/runtime/bin/timer_impl.dart
@@ -12,7 +12,7 @@ class _Timer implements Timer {
static Timer _createTimer(void callback(Timer timer),
int milliSeconds,
bool repeating) {
- EventHandler._start();
+ _EventHandler._start();
if (_timers === null) {
_timers = new DoubleLinkedQueue<_Timer>();
}
@@ -99,7 +99,7 @@ class _Timer implements Timer {
// No pending timers: Close the receive port and let the event handler
// know.
if (_receivePort !== null) {
- EventHandler._sendData(-1, _receivePort, _NO_TIMER);
+ _EventHandler._sendData(-1, _receivePort, _NO_TIMER);
_shutdownTimerHandler();
}
} else {
@@ -108,9 +108,9 @@ class _Timer implements Timer {
// events.
_createTimerHandler();
}
- EventHandler._sendData(-1,
- _receivePort,
- _timers.firstEntry().element._wakeupTime);
+ _EventHandler._sendData(-1,
+ _receivePort,
+ _timers.firstEntry().element._wakeupTime);
}
}

Powered by Google App Engine
This is Rietveld 408576698