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

Unified Diff: tools/dom/src/Microtask.dart

Issue 13044010: dom: more final more of the time (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nit Created 7 years, 9 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 | « tools/dom/src/Isolates.dart ('k') | tools/dom/src/chrome/chrome.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/Microtask.dart
diff --git a/tools/dom/src/Microtask.dart b/tools/dom/src/Microtask.dart
index 4b811e45db9cd4fe1753acfdcac1fc6f84c1f6e6..2599bdfe02f6a3458c8ae24f8daabe6475bd046d 100644
--- a/tools/dom/src/Microtask.dart
+++ b/tools/dom/src/Microtask.dart
@@ -12,7 +12,7 @@ typedef void _MicrotaskCallback();
*/
abstract class _MicrotaskScheduler {
bool _nextMicrotaskFrameScheduled = false;
- _MicrotaskCallback _callback;
+ final _MicrotaskCallback _callback;
_MicrotaskScheduler(this._callback);
« no previous file with comments | « tools/dom/src/Isolates.dart ('k') | tools/dom/src/chrome/chrome.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698