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

Unified Diff: lib/html/templates/html/dartium/html_dartium.darttemplate

Issue 10913191: Migrate templates to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
Index: lib/html/templates/html/dartium/html_dartium.darttemplate
diff --git a/lib/html/templates/html/dartium/html_dartium.darttemplate b/lib/html/templates/html/dartium/html_dartium.darttemplate
index 3c5cbc3df873cce0b7c06d7fa873236708d2f887..6a95021c2dc9e4c8fd87d3107b5b5ab09d328580 100644
--- a/lib/html/templates/html/dartium/html_dartium.darttemplate
+++ b/lib/html/templates/html/dartium/html_dartium.darttemplate
@@ -35,7 +35,7 @@ $!GENERATED_DART_FILES
Window __window;
-Window get window() {
+Window get window {
if (__window !== null) {
return __window;
}
@@ -43,11 +43,11 @@ Window get window() {
return __window;
}
-Window get _window() native "Utils_window";
+Window get _window native "Utils_window";
Document __document;
-Document get document() {
+Document get document {
if (__document !== null) {
return __document;
}
@@ -55,7 +55,7 @@ Document get document() {
return __document;
}
-Document get _document() => _window.document;
+Document get _document => _window.document;
Element query(String selector) => _document.query(selector);
ElementList queryAll(String selector) => _document.queryAll(selector);
« no previous file with comments | « lib/html/templates/html/dart2js/impl_Window.darttemplate ('k') | lib/html/templates/html/dartium/impl_Window.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698