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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
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, 8 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/src/Isolates.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 360a5c40cea511e14e29c6b64f72531aee273e77..db0c5759b8fcb7daf772bf60902d1359d227449b 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -35632,7 +35632,7 @@ class _JsDeserializer extends _Deserializer {
// The receiver is JS.
class _JsSendPortSync implements SendPortSync {
- num _id;
+ final num _id;
_JsSendPortSync(this._id);
callSync(var message) {
@@ -35802,7 +35802,7 @@ typedef void _MicrotaskCallback();
*/
abstract class _MicrotaskScheduler {
bool _nextMicrotaskFrameScheduled = false;
- _MicrotaskCallback _callback;
+ final _MicrotaskCallback _callback;
_MicrotaskScheduler(this._callback);
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/src/Isolates.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698