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

Side by Side Diff: client/dom/generated/src/interface/DOMWindow.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 interface Window extends EventTarget { 7 interface Window extends EventTarget {
8 8
9 DOMApplicationCache get applicationCache(); 9 DOMApplicationCache get applicationCache();
10 10
11 Navigator get clientInformation(); 11 Navigator get clientInformation();
12 12
13 void set clientInformation(Navigator value); 13 void set clientInformation(Navigator value);
14 14
15 bool get closed(); 15 bool get closed();
16 16
17 Console get console(); 17 Console get console();
18 18
19 void set console(Console value); 19 void set console(Console value);
20 20
21 Crypto get crypto(); 21 Crypto get crypto();
22 22
23 String get defaultStatus(); 23 String get defaultStatus();
24 24
25 void set defaultStatus(String value); 25 void set defaultStatus(String value);
26 26
27 String get defaultstatus();
28
29 void set defaultstatus(String value);
30
27 num get devicePixelRatio(); 31 num get devicePixelRatio();
28 32
29 void set devicePixelRatio(num value); 33 void set devicePixelRatio(num value);
30 34
31 Document get document(); 35 Document get document();
32 36
33 Event get event(); 37 Event get event();
34 38
35 void set event(Event value); 39 void set event(Event value);
36 40
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 BarInfo get toolbar(); 457 BarInfo get toolbar();
454 458
455 void set toolbar(BarInfo value); 459 void set toolbar(BarInfo value);
456 460
457 DOMWindow get top(); 461 DOMWindow get top();
458 462
459 void set top(DOMWindow value); 463 void set top(DOMWindow value);
460 464
461 NotificationCenter get webkitNotifications(); 465 NotificationCenter get webkitNotifications();
462 466
467 DOMURL get webkitURL();
468
463 DOMWindow get window(); 469 DOMWindow get window();
464 470
465 void addEventListener(String type, EventListener listener, [bool useCapture]); 471 void addEventListener(String type, EventListener listener, [bool useCapture]);
466 472
467 void alert(String message); 473 void alert(String message);
468 474
469 String atob(String string); 475 String atob(String string);
470 476
471 void blur(); 477 void blur();
472 478
(...skipping 10 matching lines...) Expand all
483 bool confirm(String message); 489 bool confirm(String message);
484 490
485 bool dispatchEvent(Event evt); 491 bool dispatchEvent(Event evt);
486 492
487 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w holeWord, bool searchInFrames, bool showDialog); 493 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w holeWord, bool searchInFrames, bool showDialog);
488 494
489 void focus(); 495 void focus();
490 496
491 CSSStyleDeclaration getComputedStyle(Element element, String pseudoElement); 497 CSSStyleDeclaration getComputedStyle(Element element, String pseudoElement);
492 498
499 CSSRuleList getMatchedCSSRules(Element element, String pseudoElement);
500
493 DOMSelection getSelection(); 501 DOMSelection getSelection();
494 502
495 MediaQueryList matchMedia(String query); 503 MediaQueryList matchMedia(String query);
496 504
497 void moveBy(num x, num y); 505 void moveBy(num x, num y);
498 506
499 void moveTo(num x, num y); 507 void moveTo(num x, num y);
500 508
501 DOMWindow open(String url, String name, [String options]); 509 DOMWindow open(String url, String name, [String options]);
502 510
503 void postMessage(String message, String targetOrigin); 511 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar getOrigin]);
504 512
505 void print(); 513 void print();
506 514
507 String prompt(String message, String defaultValue); 515 String prompt(String message, String defaultValue);
508 516
509 void releaseEvents(); 517 void releaseEvents();
510 518
511 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 519 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
512 520
513 void resizeBy(num x, num y); 521 void resizeBy(num x, num y);
(...skipping 13 matching lines...) Expand all
527 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]); 535 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]);
528 536
529 void stop(); 537 void stop();
530 538
531 void webkitCancelRequestAnimationFrame(int id); 539 void webkitCancelRequestAnimationFrame(int id);
532 540
533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); 541 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p);
534 542
535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); 543 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p);
536 544
537 void webkitPostMessage(String message, String targetOrigin); 545 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin]);
538 546
539 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element); 547 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element);
540 } 548 }
541 549
542 interface DOMWindow extends Window { 550 interface DOMWindow extends Window {
543 } 551 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DOMTokenList.dart ('k') | client/dom/generated/src/interface/DedicatedWorkerContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698