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

Unified Diff: sdk/lib/chrome/dart2js/chrome_dart2js.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 | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/chrome/dart2js/chrome_dart2js.dart
diff --git a/sdk/lib/chrome/dart2js/chrome_dart2js.dart b/sdk/lib/chrome/dart2js/chrome_dart2js.dart
index 7c1ca62c055bfb3011c3bcea61dcc6c7e30b395f..2c416c4c77bb9b70c11009167930468a435172ed 100644
--- a/sdk/lib/chrome/dart2js/chrome_dart2js.dart
+++ b/sdk/lib/chrome/dart2js/chrome_dart2js.dart
@@ -59,7 +59,7 @@ abstract class ChromeObject {
/*
* JS Object Representation
*/
- Object _jsObject;
+ final Object _jsObject;
}
/**
@@ -196,12 +196,12 @@ class Event {
/*
* JS Object Representation
*/
- Object _jsObject;
+ final Object _jsObject;
/*
* Number of arguments the callback takes.
*/
- int _callbackArity;
+ final int _callbackArity;
/*
* Private constructor
@@ -329,7 +329,7 @@ class API_ChromeApp {
/*
* JS Variable
*/
- Object _jsObject;
+ final Object _jsObject;
/*
* Members
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698