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

Side by Side Diff: client/dom/generated/src/frog/DOMWindow.dart

Issue 8387057: Forgot generated code for frog dom. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
(Empty)
1
2 class DOMWindow native "DOMWindow" {
3
4 DOMApplicationCache applicationCache;
5
6 Navigator clientInformation;
7
8 bool closed;
9
10 Console console;
11
12 Crypto crypto;
13
14 String defaultStatus;
15
16 num devicePixelRatio;
17
18 Document document;
19
20 Event event;
21
22 Element frameElement;
23
24 DOMWindow frames;
25
26 History history;
27
28 int innerHeight;
29
30 int innerWidth;
31
32 int length;
33
34 Storage localStorage;
35
36 Location location;
37
38 BarInfo locationbar;
39
40 BarInfo menubar;
41
42 String name;
43
44 Navigator navigator;
45
46 bool offscreenBuffering;
47
48 EventListener onabort;
49
50 EventListener onbeforeunload;
51
52 EventListener onblur;
53
54 EventListener oncanplay;
55
56 EventListener oncanplaythrough;
57
58 EventListener onchange;
59
60 EventListener onclick;
61
62 EventListener oncontextmenu;
63
64 EventListener ondblclick;
65
66 EventListener ondevicemotion;
67
68 EventListener ondeviceorientation;
69
70 EventListener ondrag;
71
72 EventListener ondragend;
73
74 EventListener ondragenter;
75
76 EventListener ondragleave;
77
78 EventListener ondragover;
79
80 EventListener ondragstart;
81
82 EventListener ondrop;
83
84 EventListener ondurationchange;
85
86 EventListener onemptied;
87
88 EventListener onended;
89
90 EventListener onerror;
91
92 EventListener onfocus;
93
94 EventListener onhashchange;
95
96 EventListener oninput;
97
98 EventListener oninvalid;
99
100 EventListener onkeydown;
101
102 EventListener onkeypress;
103
104 EventListener onkeyup;
105
106 EventListener onload;
107
108 EventListener onloadeddata;
109
110 EventListener onloadedmetadata;
111
112 EventListener onloadstart;
113
114 EventListener onmessage;
115
116 EventListener onmousedown;
117
118 EventListener onmousemove;
119
120 EventListener onmouseout;
121
122 EventListener onmouseover;
123
124 EventListener onmouseup;
125
126 EventListener onmousewheel;
127
128 EventListener onoffline;
129
130 EventListener ononline;
131
132 EventListener onpagehide;
133
134 EventListener onpageshow;
135
136 EventListener onpause;
137
138 EventListener onplay;
139
140 EventListener onplaying;
141
142 EventListener onpopstate;
143
144 EventListener onprogress;
145
146 EventListener onratechange;
147
148 EventListener onreset;
149
150 EventListener onresize;
151
152 EventListener onscroll;
153
154 EventListener onsearch;
155
156 EventListener onseeked;
157
158 EventListener onseeking;
159
160 EventListener onselect;
161
162 EventListener onstalled;
163
164 EventListener onstorage;
165
166 EventListener onsubmit;
167
168 EventListener onsuspend;
169
170 EventListener ontimeupdate;
171
172 EventListener ontouchcancel;
173
174 EventListener ontouchend;
175
176 EventListener ontouchmove;
177
178 EventListener ontouchstart;
179
180 EventListener onunload;
181
182 EventListener onvolumechange;
183
184 EventListener onwaiting;
185
186 EventListener onwebkitanimationend;
187
188 EventListener onwebkitanimationiteration;
189
190 EventListener onwebkitanimationstart;
191
192 EventListener onwebkittransitionend;
193
194 DOMWindow opener;
195
196 int outerHeight;
197
198 int outerWidth;
199
200 int pageXOffset;
201
202 int pageYOffset;
203
204 DOMWindow parent;
205
206 Performance performance;
207
208 BarInfo personalbar;
209
210 Screen screen;
211
212 int screenLeft;
213
214 int screenTop;
215
216 int screenX;
217
218 int screenY;
219
220 int scrollX;
221
222 int scrollY;
223
224 BarInfo scrollbars;
225
226 DOMWindow self;
227
228 Storage sessionStorage;
229
230 String status;
231
232 BarInfo statusbar;
233
234 StyleMedia styleMedia;
235
236 BarInfo toolbar;
237
238 DOMWindow top;
239
240 NotificationCenter webkitNotifications;
241
242 DOMWindow window;
243
244 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
245
246 void alert(String message) native;
247
248 String atob(String string) native;
249
250 void blur() native;
251
252 String btoa(String string) native;
253
254 void captureEvents() native;
255
256 void clearInterval(int handle) native;
257
258 void clearTimeout(int handle) native;
259
260 void close() native;
261
262 bool confirm(String message) native;
263
264 bool dispatchEvent(Event evt) native;
265
266 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w holeWord, bool searchInFrames, bool showDialog) native;
267
268 void focus() native;
269
270 CSSStyleDeclaration getComputedStyle(Element element, String pseudoElement) na tive;
271
272 DOMSelection getSelection() native;
273
274 MediaQueryList matchMedia(String query) native;
275
276 void moveBy(num x, num y) native;
277
278 void moveTo(num x, num y) native;
279
280 DOMWindow open(String url, String name, [String options = null]) native;
281
282 void postMessage(String message, var messagePort_OR_targetOrigin, [String targ etOrigin = null]) native;
283
284 void print() native;
285
286 String prompt(String message, String defaultValue) native;
287
288 void releaseEvents() native;
289
290 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
291
292 void resizeBy(num x, num y) native;
293
294 void resizeTo(num width, num height) native;
295
296 void scroll(int x, int y) native;
297
298 void scrollBy(int x, int y) native;
299
300 void scrollTo(int x, int y) native;
301
302 int setInterval(TimeoutHandler handler, int timeout) native;
303
304 int setTimeout(TimeoutHandler handler, int timeout) native;
305
306 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native;
307
308 void stop() native;
309
310 void webkitCancelRequestAnimationFrame(int id) native;
311
312 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native;
313
314 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native;
315
316 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
317
318 var dartObjectLocalStorage;
319
320 String get typeName() native;
321 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMURL.dart ('k') | client/dom/generated/src/frog/DataTransferItem.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698