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

Side by Side Diff: client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _TouchWrappingImplementation extends DOMWrapperBase implements Touch { 7 class _TouchWrappingImplementation extends DOMWrapperBase implements Touch {
8 _TouchWrappingImplementation() : super() {} 8 _TouchWrappingImplementation() : super() {}
9 9
10 static create__TouchWrappingImplementation() native { 10 static create__TouchWrappingImplementation() native {
11 return new _TouchWrappingImplementation(); 11 return new _TouchWrappingImplementation();
12 } 12 }
13 13
14 int get clientX() { return _get__Touch_clientX(this); } 14 int get clientX() { return _get_clientX(this); }
15 static int _get__Touch_clientX(var _this) native; 15 static int _get_clientX(var _this) native;
16 16
17 int get clientY() { return _get__Touch_clientY(this); } 17 int get clientY() { return _get_clientY(this); }
18 static int _get__Touch_clientY(var _this) native; 18 static int _get_clientY(var _this) native;
19 19
20 int get identifier() { return _get__Touch_identifier(this); } 20 int get identifier() { return _get_identifier(this); }
21 static int _get__Touch_identifier(var _this) native; 21 static int _get_identifier(var _this) native;
22 22
23 int get pageX() { return _get__Touch_pageX(this); } 23 int get pageX() { return _get_pageX(this); }
24 static int _get__Touch_pageX(var _this) native; 24 static int _get_pageX(var _this) native;
25 25
26 int get pageY() { return _get__Touch_pageY(this); } 26 int get pageY() { return _get_pageY(this); }
27 static int _get__Touch_pageY(var _this) native; 27 static int _get_pageY(var _this) native;
28 28
29 int get screenX() { return _get__Touch_screenX(this); } 29 int get screenX() { return _get_screenX(this); }
30 static int _get__Touch_screenX(var _this) native; 30 static int _get_screenX(var _this) native;
31 31
32 int get screenY() { return _get__Touch_screenY(this); } 32 int get screenY() { return _get_screenY(this); }
33 static int _get__Touch_screenY(var _this) native; 33 static int _get_screenY(var _this) native;
34 34
35 EventTarget get target() { return _get__Touch_target(this); } 35 EventTarget get target() { return _get_target(this); }
36 static EventTarget _get__Touch_target(var _this) native; 36 static EventTarget _get_target(var _this) native;
37 37
38 num get webkitForce() { return _get__Touch_webkitForce(this); } 38 num get webkitForce() { return _get_webkitForce(this); }
39 static num _get__Touch_webkitForce(var _this) native; 39 static num _get_webkitForce(var _this) native;
40 40
41 int get webkitRadiusX() { return _get__Touch_webkitRadiusX(this); } 41 int get webkitRadiusX() { return _get_webkitRadiusX(this); }
42 static int _get__Touch_webkitRadiusX(var _this) native; 42 static int _get_webkitRadiusX(var _this) native;
43 43
44 int get webkitRadiusY() { return _get__Touch_webkitRadiusY(this); } 44 int get webkitRadiusY() { return _get_webkitRadiusY(this); }
45 static int _get__Touch_webkitRadiusY(var _this) native; 45 static int _get_webkitRadiusY(var _this) native;
46 46
47 num get webkitRotationAngle() { return _get__Touch_webkitRotationAngle(this); } 47 num get webkitRotationAngle() { return _get_webkitRotationAngle(this); }
48 static num _get__Touch_webkitRotationAngle(var _this) native; 48 static num _get_webkitRotationAngle(var _this) native;
49 49
50 String get typeName() { return "Touch"; } 50 String get typeName() { return "Touch"; }
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698