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

Unified Diff: lib/html/src/TouchEventWrappingImplementation.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/TouchEvent.dart ('k') | lib/html/src/TransitionEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/TouchEventWrappingImplementation.dart
diff --git a/lib/html/src/TouchEventWrappingImplementation.dart b/lib/html/src/TouchEventWrappingImplementation.dart
index a02dbff3ce5bb5ea7547cd9776ab8967c0afe094..20d062381e5a02d29320be73f7771199340234ec 100644
--- a/lib/html/src/TouchEventWrappingImplementation.dart
+++ b/lib/html/src/TouchEventWrappingImplementation.dart
@@ -16,17 +16,17 @@ class TouchEventWrappingImplementation extends UIEventWrappingImplementation imp
return LevelDom.wrapTouchEvent(e);
}
- bool get altKey() => _ptr.altKey;
+ bool get altKey => _ptr.altKey;
- TouchList get changedTouches() => LevelDom.wrapTouchList(_ptr.changedTouches);
+ TouchList get changedTouches => LevelDom.wrapTouchList(_ptr.changedTouches);
- bool get ctrlKey() => _ptr.ctrlKey;
+ bool get ctrlKey => _ptr.ctrlKey;
- bool get metaKey() => _ptr.metaKey;
+ bool get metaKey => _ptr.metaKey;
- bool get shiftKey() => _ptr.shiftKey;
+ bool get shiftKey => _ptr.shiftKey;
- TouchList get targetTouches() => LevelDom.wrapTouchList(_ptr.targetTouches);
+ TouchList get targetTouches => LevelDom.wrapTouchList(_ptr.targetTouches);
- TouchList get touches() => LevelDom.wrapTouchList(_ptr.touches);
+ TouchList get touches => LevelDom.wrapTouchList(_ptr.touches);
}
« no previous file with comments | « lib/html/src/TouchEvent.dart ('k') | lib/html/src/TransitionEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698