Index: sdk/lib/html/templates/html/dartium/html_dartium.darttemplate |
diff --git a/sdk/lib/html/templates/html/dartium/html_dartium.darttemplate b/sdk/lib/html/templates/html/dartium/html_dartium.darttemplate |
index eb166360ee6044b65eeb7a8561ce42a22d759e19..589c70afd45660a5bdee14855897bb7c60e38061 100644 |
--- a/sdk/lib/html/templates/html/dartium/html_dartium.darttemplate |
+++ b/sdk/lib/html/templates/html/dartium/html_dartium.darttemplate |
@@ -36,25 +36,24 @@ part '$AUXILIARY_DIR/_Lists.dart'; |
part '$AUXILIARY_DIR/native_DOMPublic.dart'; |
part '$AUXILIARY_DIR/native_DOMImplementation.dart'; |
-// FIXME (blois): Rename to _window (ditto __document). |
-LocalWindow __window; |
+LocalWindow _window; |
LocalWindow get window { |
- if (__window != null) { |
- return __window; |
+ if (_window != null) { |
+ return _window; |
} |
- __window = _Utils.window(); |
- return __window; |
+ _window = _Utils.window(); |
+ return _window; |
} |
-Document __document; |
+HtmlDocument _document; |
-Document get document { |
- if (__document != null) { |
- return __document; |
+HtmlDocument get document { |
+ if (_document != null) { |
+ return _document; |
} |
- __document = window.document; |
- return __document; |
+ _document = window.document; |
+ return _document; |
} |