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

Unified Diff: lib/html/src/KeyboardEvent.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/KeyboardEvent.dart
diff --git a/lib/html/src/KeyboardEvent.dart b/lib/html/src/KeyboardEvent.dart
index a22fed0be52ec6ec0aa75f64d71c8147d0c62e43..541783a12405b992068776031dd3eb0351ddf6e8 100644
--- a/lib/html/src/KeyboardEvent.dart
+++ b/lib/html/src/KeyboardEvent.dart
@@ -16,19 +16,19 @@ interface KeyboardEvent extends UIEvent default KeyboardEventWrappingImplementat
[bool canBubble, bool cancelable, bool ctrlKey, bool altKey,
bool shiftKey, bool metaKey, bool altGraphKey]);
- bool get altGraphKey();
+ bool get altGraphKey;
- bool get altKey();
+ bool get altKey;
- bool get ctrlKey();
+ bool get ctrlKey;
- String get keyIdentifier();
+ String get keyIdentifier;
- int get keyLocation();
+ int get keyLocation;
- bool get metaKey();
+ bool get metaKey;
- bool get shiftKey();
+ bool get shiftKey;
bool getModifierState(String keyIdentifierArg);
}
« no previous file with comments | « lib/html/src/HashChangeEventWrappingImplementation.dart ('k') | lib/html/src/KeyboardEventWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698