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

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

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage 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 1
2 class DOMWindow native "DOMWindow" { 2 class DOMWindow native "DOMWindow" {
3 3
4 DOMApplicationCache applicationCache; 4 DOMApplicationCache applicationCache;
5 5
6 Navigator clientInformation; 6 Navigator clientInformation;
7 7
8 bool closed; 8 bool closed;
9 9
10 Console console; 10 Console console;
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 DOMSelection getSelection() native; 272 DOMSelection getSelection() native;
273 273
274 MediaQueryList matchMedia(String query) native; 274 MediaQueryList matchMedia(String query) native;
275 275
276 void moveBy(num x, num y) native; 276 void moveBy(num x, num y) native;
277 277
278 void moveTo(num x, num y) native; 278 void moveTo(num x, num y) native;
279 279
280 DOMWindow open(String url, String name, [String options = null]) native; 280 DOMWindow open(String url, String name, [String options = null]) native;
281 281
282 void postMessage(String message, var messagePort_OR_targetOrigin, [String targ etOrigin = null]) native; 282 void postMessage(String message, String targetOrigin) native;
283 283
284 void print() native; 284 void print() native;
285 285
286 String prompt(String message, String defaultValue) native; 286 String prompt(String message, String defaultValue) native;
287 287
288 void releaseEvents() native; 288 void releaseEvents() native;
289 289
290 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 290 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
291 291
292 void resizeBy(num x, num y) native; 292 void resizeBy(num x, num y) native;
(...skipping 13 matching lines...) Expand all
306 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native; 306 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native;
307 307
308 void stop() native; 308 void stop() native;
309 309
310 void webkitCancelRequestAnimationFrame(int id) native; 310 void webkitCancelRequestAnimationFrame(int id) native;
311 311
312 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; 312 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native;
313 313
314 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; 314 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native;
315 315
316 void webkitPostMessage(String message, String targetOrigin) native;
317
316 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native; 318 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
317 319
318 var dartObjectLocalStorage; 320 var dartObjectLocalStorage;
319 321
320 String get typeName() native; 322 String get typeName() native;
321 } 323 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMFormData.dart ('k') | client/dom/generated/src/frog/DataTransferItemList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698