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

Unified Diff: lib/html/src/XMLHttpRequestProgressEvent.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/XMLHttpRequestProgressEvent.dart
diff --git a/lib/html/src/XMLHttpRequestProgressEvent.dart b/lib/html/src/XMLHttpRequestProgressEvent.dart
index 839e1b07a0c14ec6d3d0c12477ec3c4ec21b3a15..d5921fe835dd2e4fb07220aeaa74393b444950ad 100644
--- a/lib/html/src/XMLHttpRequestProgressEvent.dart
+++ b/lib/html/src/XMLHttpRequestProgressEvent.dart
@@ -7,7 +7,7 @@ interface XMLHttpRequestProgressEvent extends ProgressEvent default XMLHttpReque
XMLHttpRequestProgressEvent(String type, int loaded, [bool canBubble,
bool cancelable, bool lengthComputable, int total]);
- int get position();
+ int get position;
- int get totalSize();
+ int get totalSize;
}

Powered by Google App Engine
This is Rietveld 408576698