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

Side by Side Diff: client/dom/generated/src/wrapping/_UIEventWrappingImplementation.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 _UIEventWrappingImplementation extends _EventWrappingImplementation implem ents UIEvent { 7 class _UIEventWrappingImplementation extends _EventWrappingImplementation implem ents UIEvent {
8 _UIEventWrappingImplementation() : super() {} 8 _UIEventWrappingImplementation() : super() {}
9 9
10 static create__UIEventWrappingImplementation() native { 10 static create__UIEventWrappingImplementation() native {
11 return new _UIEventWrappingImplementation(); 11 return new _UIEventWrappingImplementation();
12 } 12 }
13 13
14 int get charCode() { return _get__UIEvent_charCode(this); } 14 int get charCode() { return _get_charCode(this); }
15 static int _get__UIEvent_charCode(var _this) native; 15 static int _get_charCode(var _this) native;
16 16
17 int get detail() { return _get__UIEvent_detail(this); } 17 int get detail() { return _get_detail(this); }
18 static int _get__UIEvent_detail(var _this) native; 18 static int _get_detail(var _this) native;
19 19
20 int get keyCode() { return _get__UIEvent_keyCode(this); } 20 int get keyCode() { return _get_keyCode(this); }
21 static int _get__UIEvent_keyCode(var _this) native; 21 static int _get_keyCode(var _this) native;
22 22
23 int get layerX() { return _get__UIEvent_layerX(this); } 23 int get layerX() { return _get_layerX(this); }
24 static int _get__UIEvent_layerX(var _this) native; 24 static int _get_layerX(var _this) native;
25 25
26 int get layerY() { return _get__UIEvent_layerY(this); } 26 int get layerY() { return _get_layerY(this); }
27 static int _get__UIEvent_layerY(var _this) native; 27 static int _get_layerY(var _this) native;
28 28
29 int get pageX() { return _get__UIEvent_pageX(this); } 29 int get pageX() { return _get_pageX(this); }
30 static int _get__UIEvent_pageX(var _this) native; 30 static int _get_pageX(var _this) native;
31 31
32 int get pageY() { return _get__UIEvent_pageY(this); } 32 int get pageY() { return _get_pageY(this); }
33 static int _get__UIEvent_pageY(var _this) native; 33 static int _get_pageY(var _this) native;
34 34
35 DOMWindow get view() { return _get__UIEvent_view(this); } 35 DOMWindow get view() { return _get_view(this); }
36 static DOMWindow _get__UIEvent_view(var _this) native; 36 static DOMWindow _get_view(var _this) native;
37 37
38 int get which() { return _get__UIEvent_which(this); } 38 int get which() { return _get_which(this); }
39 static int _get__UIEvent_which(var _this) native; 39 static int _get_which(var _this) native;
40 40
41 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) { 41 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) {
42 _initUIEvent(this, type, canBubble, cancelable, view, detail); 42 _initUIEvent(this, type, canBubble, cancelable, view, detail);
43 return; 43 return;
44 } 44 }
45 static void _initUIEvent(receiver, type, canBubble, cancelable, view, detail) native; 45 static void _initUIEvent(receiver, type, canBubble, cancelable, view, detail) native;
46 46
47 String get typeName() { return "UIEvent"; } 47 String get typeName() { return "UIEvent"; }
48 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698