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

Side by Side Diff: client/html/generated/html/frog/Touch.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
OLDNEW
(Empty)
1
2 class _TouchImpl implements Touch native "*Touch" {
3
4 final int clientX;
5
6 final int clientY;
7
8 final int identifier;
9
10 final int pageX;
11
12 final int pageY;
13
14 final int screenX;
15
16 final int screenY;
17
18 _EventTargetImpl get target() => _FixHtmlDocumentReference(_target);
19
20 _EventTargetImpl get _target() native "return this.target;";
21
22 final num webkitForce;
23
24 final int webkitRadiusX;
25
26 final int webkitRadiusY;
27
28 final num webkitRotationAngle;
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698