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

Unified Diff: lib/html/src/ProgressEvent.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
Index: lib/html/src/ProgressEvent.dart
diff --git a/lib/html/src/ProgressEvent.dart b/lib/html/src/ProgressEvent.dart
index 4964e4ea985b983f17d5b0537064b95eb2b67578..a423cc55f1bb1afb9670c54e9c26fa9015d21301 100644
--- a/lib/html/src/ProgressEvent.dart
+++ b/lib/html/src/ProgressEvent.dart
@@ -7,9 +7,9 @@ interface ProgressEvent extends Event default ProgressEventWrappingImplementatio
ProgressEvent(String type, int loaded, [bool canBubble, bool cancelable,
bool lengthComputable, int total]);
- bool get lengthComputable();
+ bool get lengthComputable;
- int get loaded();
+ int get loaded;
- int get total();
+ int get total;
}
« no previous file with comments | « lib/html/src/PopStateEventWrappingImplementation.dart ('k') | lib/html/src/ProgressEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698