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

Unified Diff: lib/html/src/ProgressEventWrappingImplementation.dart

Issue 10919146: Get rid of a lot of () for getters. (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
« no previous file with comments | « lib/html/src/ProgressEvent.dart ('k') | lib/html/src/SVGElement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/ProgressEventWrappingImplementation.dart
diff --git a/lib/html/src/ProgressEventWrappingImplementation.dart b/lib/html/src/ProgressEventWrappingImplementation.dart
index f1982b41d1462bc51a8e39c3451cf6573a21359c..97559236a42718a06651a43b9b6bb7d1d5344499 100644
--- a/lib/html/src/ProgressEventWrappingImplementation.dart
+++ b/lib/html/src/ProgressEventWrappingImplementation.dart
@@ -14,9 +14,9 @@ class ProgressEventWrappingImplementation extends EventWrappingImplementation im
return LevelDom.wrapProgressEvent(e);
}
- bool get lengthComputable() => _ptr.lengthComputable;
+ bool get lengthComputable => _ptr.lengthComputable;
- int get loaded() => _ptr.loaded;
+ int get loaded => _ptr.loaded;
- int get total() => _ptr.total;
+ int get total => _ptr.total;
}
« no previous file with comments | « lib/html/src/ProgressEvent.dart ('k') | lib/html/src/SVGElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698