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

Side by Side Diff: client/dom/generated/src/interface/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 // 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 Window extends EventTarget { 7 interface Window extends EventTarget {
8 8
9 DOMApplicationCache get applicationCache(); 9 DOMApplicationCache get applicationCache();
10 10
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 DOMSelection getSelection(); 493 DOMSelection getSelection();
494 494
495 MediaQueryList matchMedia(String query); 495 MediaQueryList matchMedia(String query);
496 496
497 void moveBy(num x, num y); 497 void moveBy(num x, num y);
498 498
499 void moveTo(num x, num y); 499 void moveTo(num x, num y);
500 500
501 DOMWindow open(String url, String name, [String options]); 501 DOMWindow open(String url, String name, [String options]);
502 502
503 void postMessage(String message, var messagePort_OR_targetOrigin, [String targ etOrigin]); 503 void postMessage(String message, String targetOrigin);
504 504
505 void print(); 505 void print();
506 506
507 String prompt(String message, String defaultValue); 507 String prompt(String message, String defaultValue);
508 508
509 void releaseEvents(); 509 void releaseEvents();
510 510
511 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 511 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
512 512
513 void resizeBy(num x, num y); 513 void resizeBy(num x, num y);
(...skipping 13 matching lines...) Expand all
527 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]); 527 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]);
528 528
529 void stop(); 529 void stop();
530 530
531 void webkitCancelRequestAnimationFrame(int id); 531 void webkitCancelRequestAnimationFrame(int id);
532 532
533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); 533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p);
534 534
535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); 535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p);
536 536
537 void webkitPostMessage(String message, String targetOrigin);
538
537 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element); 539 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element);
538 } 540 }
539 541
540 interface DOMWindow extends Window { 542 interface DOMWindow extends Window {
541 } 543 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DOMFormData.dart ('k') | client/dom/generated/src/interface/DataTransferItemList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698