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

Unified Diff: lib/html/src/KeyboardEventWrappingImplementation.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/KeyboardEvent.dart ('k') | lib/html/src/MessageEvent.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/KeyboardEventWrappingImplementation.dart
diff --git a/lib/html/src/KeyboardEventWrappingImplementation.dart b/lib/html/src/KeyboardEventWrappingImplementation.dart
index ff1618ff3aa86bff3311d7717428b6136100f7c6..9d3ae58ba5c00921f42ef284dbd8605f5bb0911e 100644
--- a/lib/html/src/KeyboardEventWrappingImplementation.dart
+++ b/lib/html/src/KeyboardEventWrappingImplementation.dart
@@ -16,19 +16,19 @@ class KeyboardEventWrappingImplementation extends UIEventWrappingImplementation
return LevelDom.wrapKeyboardEvent(e);
}
- bool get altGraphKey() => _ptr.altGraphKey;
+ bool get altGraphKey => _ptr.altGraphKey;
- bool get altKey() => _ptr.altKey;
+ bool get altKey => _ptr.altKey;
- bool get ctrlKey() => _ptr.ctrlKey;
+ bool get ctrlKey => _ptr.ctrlKey;
- String get keyIdentifier() => _ptr.keyIdentifier;
+ String get keyIdentifier => _ptr.keyIdentifier;
- int get keyLocation() => _ptr.keyLocation;
+ int get keyLocation => _ptr.keyLocation;
- bool get metaKey() => _ptr.metaKey;
+ bool get metaKey => _ptr.metaKey;
- bool get shiftKey() => _ptr.shiftKey;
+ bool get shiftKey => _ptr.shiftKey;
bool getModifierState(String keyIdentifierArg) {
return _ptr.getModifierState(keyIdentifierArg);
« no previous file with comments | « lib/html/src/KeyboardEvent.dart ('k') | lib/html/src/MessageEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698