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

Side by Side Diff: client/dom/generated/src/frog/TouchEvent.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/generated/src/frog/Touch.dart ('k') | client/dom/generated/src/frog/TouchList.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 class TouchEventJS extends UIEventJS implements TouchEvent native "*TouchEvent" { 2 class TouchEventJs extends UIEventJs implements TouchEvent native "*TouchEvent" {
3 3
4 bool get altKey() native "return this.altKey;"; 4 bool get altKey() native "return this.altKey;";
5 5
6 TouchListJS get changedTouches() native "return this.changedTouches;"; 6 TouchListJs get changedTouches() native "return this.changedTouches;";
7 7
8 bool get ctrlKey() native "return this.ctrlKey;"; 8 bool get ctrlKey() native "return this.ctrlKey;";
9 9
10 bool get metaKey() native "return this.metaKey;"; 10 bool get metaKey() native "return this.metaKey;";
11 11
12 bool get shiftKey() native "return this.shiftKey;"; 12 bool get shiftKey() native "return this.shiftKey;";
13 13
14 TouchListJS get targetTouches() native "return this.targetTouches;"; 14 TouchListJs get targetTouches() native "return this.targetTouches;";
15 15
16 TouchListJS get touches() native "return this.touches;"; 16 TouchListJs get touches() native "return this.touches;";
17 17
18 void initTouchEvent(TouchListJS touches, TouchListJS targetTouches, TouchListJ S changedTouches, String type, DOMWindowJS view, int screenX, int screenY, int c lientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) nat ive; 18 void initTouchEvent(TouchListJs touches, TouchListJs targetTouches, TouchListJ s changedTouches, String type, DOMWindowJs view, int screenX, int screenY, int c lientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) nat ive;
19 } 19 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Touch.dart ('k') | client/dom/generated/src/frog/TouchList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698