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

Side by Side Diff: client/dom/generated/src/interface/Event.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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
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 interface Event { 7 interface Event {
8 8
9 static final int AT_TARGET = 2; 9 static final int AT_TARGET = 2;
10 10
(...skipping 26 matching lines...) Expand all
37 static final int MOUSEMOVE = 16; 37 static final int MOUSEMOVE = 16;
38 38
39 static final int MOUSEOUT = 8; 39 static final int MOUSEOUT = 8;
40 40
41 static final int MOUSEOVER = 4; 41 static final int MOUSEOVER = 4;
42 42
43 static final int MOUSEUP = 2; 43 static final int MOUSEUP = 2;
44 44
45 static final int SELECT = 16384; 45 static final int SELECT = 16384;
46 46
47 bool get bubbles(); 47 final bool bubbles;
48 48
49 bool get cancelBubble(); 49 bool cancelBubble;
50 50
51 void set cancelBubble(bool value); 51 final bool cancelable;
52 52
53 bool get cancelable(); 53 final Clipboard clipboardData;
54 54
55 Clipboard get clipboardData(); 55 final EventTarget currentTarget;
56 56
57 EventTarget get currentTarget(); 57 final bool defaultPrevented;
58 58
59 bool get defaultPrevented(); 59 final int eventPhase;
60 60
61 int get eventPhase(); 61 bool returnValue;
62 62
63 bool get returnValue(); 63 final EventTarget srcElement;
64 64
65 void set returnValue(bool value); 65 final EventTarget target;
66 66
67 EventTarget get srcElement(); 67 final int timeStamp;
68 68
69 EventTarget get target(); 69 final String type;
70
71 int get timeStamp();
72
73 String get type();
74 70
75 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); 71 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);
76 72
77 void preventDefault(); 73 void preventDefault();
78 74
79 void stopImmediatePropagation(); 75 void stopImmediatePropagation();
80 76
81 void stopPropagation(); 77 void stopPropagation();
82 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698