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

Unified Diff: tools/dom/src/chrome/utils.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/chrome/chrome.dart ('k') | tools/dom/src/dart2js_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/chrome/utils.dart
diff --git a/tools/dom/src/chrome/utils.dart b/tools/dom/src/chrome/utils.dart
index eddc6a445b1086a196aee9d3974d6cfc7e9f2ef4..57a6b68efdfde3dd451d0f349591b6c5969088a3 100644
--- a/tools/dom/src/chrome/utils.dart
+++ b/tools/dom/src/chrome/utils.dart
@@ -33,7 +33,7 @@ abstract class ChromeObject {
/*
* JS Object Representation
*/
- Object _jsObject;
+ final Object _jsObject;
}
/**
@@ -170,12 +170,12 @@ class Event {
/*
* JS Object Representation
*/
- Object _jsObject;
+ final Object _jsObject;
/*
* Number of arguments the callback takes.
*/
- int _callbackArity;
+ final int _callbackArity;
/*
* Private constructor
« no previous file with comments | « tools/dom/src/chrome/chrome.dart ('k') | tools/dom/src/dart2js_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698