| 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
|
|
|