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

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

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List 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 _EventWrappingImplementation extends DOMWrapperBase implements Event { 7 class _EventWrappingImplementation extends DOMWrapperBase implements Event {
8 _EventWrappingImplementation() : super() {} 8 _EventWrappingImplementation() : super() {}
9 9
10 static create__EventWrappingImplementation() native { 10 static create__EventWrappingImplementation() native {
11 return new _EventWrappingImplementation(); 11 return new _EventWrappingImplementation();
12 } 12 }
13 13
14 bool get bubbles() { return _get__Event_bubbles(this); } 14 bool get bubbles() { return _get__Event_bubbles(this); }
15 static bool _get__Event_bubbles(var _this) native; 15 static bool _get__Event_bubbles(var _this) native;
16 16
17 bool get cancelBubble() { return _get__Event_cancelBubble(this); } 17 bool get cancelBubble() { return _get__Event_cancelBubble(this); }
18 static bool _get__Event_cancelBubble(var _this) native; 18 static bool _get__Event_cancelBubble(var _this) native;
19 19
20 void set cancelBubble(bool value) { _set__Event_cancelBubble(this, value); } 20 void set cancelBubble(bool value) { _set__Event_cancelBubble(this, value); }
21 static void _set__Event_cancelBubble(var _this, bool value) native; 21 static void _set__Event_cancelBubble(var _this, bool value) native;
22 22
23 bool get cancelable() { return _get__Event_cancelable(this); } 23 bool get cancelable() { return _get__Event_cancelable(this); }
24 static bool _get__Event_cancelable(var _this) native; 24 static bool _get__Event_cancelable(var _this) native;
25 25
26 Clipboard get clipboardData() { return _get__Event_clipboardData(this); }
27 static Clipboard _get__Event_clipboardData(var _this) native;
28
26 EventTarget get currentTarget() { return _get__Event_currentTarget(this); } 29 EventTarget get currentTarget() { return _get__Event_currentTarget(this); }
27 static EventTarget _get__Event_currentTarget(var _this) native; 30 static EventTarget _get__Event_currentTarget(var _this) native;
28 31
29 bool get defaultPrevented() { return _get__Event_defaultPrevented(this); } 32 bool get defaultPrevented() { return _get__Event_defaultPrevented(this); }
30 static bool _get__Event_defaultPrevented(var _this) native; 33 static bool _get__Event_defaultPrevented(var _this) native;
31 34
32 int get eventPhase() { return _get__Event_eventPhase(this); } 35 int get eventPhase() { return _get__Event_eventPhase(this); }
33 static int _get__Event_eventPhase(var _this) native; 36 static int _get__Event_eventPhase(var _this) native;
34 37
35 bool get returnValue() { return _get__Event_returnValue(this); } 38 bool get returnValue() { return _get__Event_returnValue(this); }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 static void _stopImmediatePropagation(receiver) native; 72 static void _stopImmediatePropagation(receiver) native;
70 73
71 void stopPropagation() { 74 void stopPropagation() {
72 _stopPropagation(this); 75 _stopPropagation(this);
73 return; 76 return;
74 } 77 }
75 static void _stopPropagation(receiver) native; 78 static void _stopPropagation(receiver) native;
76 79
77 String get typeName() { return "Event"; } 80 String get typeName() { return "Event"; }
78 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698