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

Unified Diff: client/dom/generated/src/interface/TouchEvent.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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: client/dom/generated/src/interface/TouchEvent.dart
diff --git a/client/dom/generated/src/interface/TouchEvent.dart b/client/dom/generated/src/interface/TouchEvent.dart
index 632d50bdef234ecd2b66f10cfc5a03a625c01c86..4fe271b9a103b5b6ac36d3a97ed7b220d4b06976 100644
--- a/client/dom/generated/src/interface/TouchEvent.dart
+++ b/client/dom/generated/src/interface/TouchEvent.dart
@@ -6,19 +6,19 @@
interface TouchEvent extends UIEvent {
- bool get altKey();
+ final bool altKey;
- TouchList get changedTouches();
+ final TouchList changedTouches;
- bool get ctrlKey();
+ final bool ctrlKey;
- bool get metaKey();
+ final bool metaKey;
- bool get shiftKey();
+ final bool shiftKey;
- TouchList get targetTouches();
+ final TouchList targetTouches;
- TouchList get touches();
+ final TouchList touches;
void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList changedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
}

Powered by Google App Engine
This is Rietveld 408576698