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

Unified Diff: lib/html/src/WheelEvent.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/UIEventWrappingImplementation.dart ('k') | lib/html/src/WheelEventWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/WheelEvent.dart
diff --git a/lib/html/src/WheelEvent.dart b/lib/html/src/WheelEvent.dart
index 1177377c0bd385d4309529d985f4ce3f1600d69f..0b54e785f35e4b5a1d2c8cbef127a50f560928d8 100644
--- a/lib/html/src/WheelEvent.dart
+++ b/lib/html/src/WheelEvent.dart
@@ -8,33 +8,33 @@ interface WheelEvent extends UIEvent default WheelEventWrappingImplementation {
int clientX, int clientY, [bool ctrlKey, bool altKey, bool shiftKey,
bool metaKey]);
- bool get altKey();
+ bool get altKey;
- int get clientX();
+ int get clientX;
- int get clientY();
+ int get clientY;
- bool get ctrlKey();
+ bool get ctrlKey;
- bool get metaKey();
+ bool get metaKey;
- int get offsetX();
+ int get offsetX;
- int get offsetY();
+ int get offsetY;
- int get screenX();
+ int get screenX;
- int get screenY();
+ int get screenY;
- bool get shiftKey();
+ bool get shiftKey;
- int get wheelDelta();
+ int get wheelDelta;
- int get wheelDeltaX();
+ int get wheelDeltaX;
- int get wheelDeltaY();
+ int get wheelDeltaY;
- int get x();
+ int get x;
- int get y();
+ int get y;
}
« no previous file with comments | « lib/html/src/UIEventWrappingImplementation.dart ('k') | lib/html/src/WheelEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698