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

Side by Side Diff: lib/dom/dom.dart

Issue 10880068: - Change "static final" to "static const" in the lib/ directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/dom/scripts/dartgenerator_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dart:dom_deprecated'); 1 #library('dart:dom_deprecated');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 321
322 typedef bool AudioBufferCallback(AudioBuffer audioBuffer); 322 typedef bool AudioBufferCallback(AudioBuffer audioBuffer);
323 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 323 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
324 // for details. All rights reserved. Use of this source code is governed by a 324 // for details. All rights reserved. Use of this source code is governed by a
325 // BSD-style license that can be found in the LICENSE file. 325 // BSD-style license that can be found in the LICENSE file.
326 326
327 // WARNING: Do not edit - generated code. 327 // WARNING: Do not edit - generated code.
328 328
329 interface AudioBufferSourceNode extends AudioSourceNode { 329 interface AudioBufferSourceNode extends AudioSourceNode {
330 330
331 static final int FINISHED_STATE = 3; 331 static const int FINISHED_STATE = 3;
332 332
333 static final int PLAYING_STATE = 2; 333 static const int PLAYING_STATE = 2;
334 334
335 static final int SCHEDULED_STATE = 1; 335 static const int SCHEDULED_STATE = 1;
336 336
337 static final int UNSCHEDULED_STATE = 0; 337 static const int UNSCHEDULED_STATE = 0;
338 338
339 AudioBuffer buffer; 339 AudioBuffer buffer;
340 340
341 final AudioGain gain; 341 final AudioGain gain;
342 342
343 bool loop; 343 bool loop;
344 344
345 bool looping; 345 bool looping;
346 346
347 final AudioParam playbackRate; 347 final AudioParam playbackRate;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 void disconnect(int output); 493 void disconnect(int output);
494 } 494 }
495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
496 // for details. All rights reserved. Use of this source code is governed by a 496 // for details. All rights reserved. Use of this source code is governed by a
497 // BSD-style license that can be found in the LICENSE file. 497 // BSD-style license that can be found in the LICENSE file.
498 498
499 // WARNING: Do not edit - generated code. 499 // WARNING: Do not edit - generated code.
500 500
501 interface AudioPannerNode extends AudioNode { 501 interface AudioPannerNode extends AudioNode {
502 502
503 static final int EQUALPOWER = 0; 503 static const int EQUALPOWER = 0;
504 504
505 static final int EXPONENTIAL_DISTANCE = 2; 505 static const int EXPONENTIAL_DISTANCE = 2;
506 506
507 static final int HRTF = 1; 507 static const int HRTF = 1;
508 508
509 static final int INVERSE_DISTANCE = 1; 509 static const int INVERSE_DISTANCE = 1;
510 510
511 static final int LINEAR_DISTANCE = 0; 511 static const int LINEAR_DISTANCE = 0;
512 512
513 static final int SOUNDFIELD = 2; 513 static const int SOUNDFIELD = 2;
514 514
515 final AudioGain coneGain; 515 final AudioGain coneGain;
516 516
517 num coneInnerAngle; 517 num coneInnerAngle;
518 518
519 num coneOuterAngle; 519 num coneOuterAngle;
520 520
521 num coneOuterGain; 521 num coneOuterGain;
522 522
523 final AudioGain distanceGain; 523 final AudioGain distanceGain;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 final String url; 636 final String url;
637 } 637 }
638 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 638 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
639 // for details. All rights reserved. Use of this source code is governed by a 639 // for details. All rights reserved. Use of this source code is governed by a
640 // BSD-style license that can be found in the LICENSE file. 640 // BSD-style license that can be found in the LICENSE file.
641 641
642 // WARNING: Do not edit - generated code. 642 // WARNING: Do not edit - generated code.
643 643
644 interface BiquadFilterNode extends AudioNode { 644 interface BiquadFilterNode extends AudioNode {
645 645
646 static final int ALLPASS = 7; 646 static const int ALLPASS = 7;
647 647
648 static final int BANDPASS = 2; 648 static const int BANDPASS = 2;
649 649
650 static final int HIGHPASS = 1; 650 static const int HIGHPASS = 1;
651 651
652 static final int HIGHSHELF = 4; 652 static const int HIGHSHELF = 4;
653 653
654 static final int LOWPASS = 0; 654 static const int LOWPASS = 0;
655 655
656 static final int LOWSHELF = 3; 656 static const int LOWSHELF = 3;
657 657
658 static final int NOTCH = 6; 658 static const int NOTCH = 6;
659 659
660 static final int PEAKING = 5; 660 static const int PEAKING = 5;
661 661
662 final AudioParam Q; 662 final AudioParam Q;
663 663
664 final AudioParam frequency; 664 final AudioParam frequency;
665 665
666 final AudioParam gain; 666 final AudioParam gain;
667 667
668 int type; 668 int type;
669 669
670 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse, Float32Array phaseResponse); 670 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse, Float32Array phaseResponse);
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 final CSSStyleDeclaration style; 758 final CSSStyleDeclaration style;
759 } 759 }
760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
761 // for details. All rights reserved. Use of this source code is governed by a 761 // for details. All rights reserved. Use of this source code is governed by a
762 // BSD-style license that can be found in the LICENSE file. 762 // BSD-style license that can be found in the LICENSE file.
763 763
764 // WARNING: Do not edit - generated code. 764 // WARNING: Do not edit - generated code.
765 765
766 interface CSSPrimitiveValue extends CSSValue { 766 interface CSSPrimitiveValue extends CSSValue {
767 767
768 static final int CSS_ATTR = 22; 768 static const int CSS_ATTR = 22;
769 769
770 static final int CSS_CM = 6; 770 static const int CSS_CM = 6;
771 771
772 static final int CSS_COUNTER = 23; 772 static const int CSS_COUNTER = 23;
773 773
774 static final int CSS_DEG = 11; 774 static const int CSS_DEG = 11;
775 775
776 static final int CSS_DIMENSION = 18; 776 static const int CSS_DIMENSION = 18;
777 777
778 static final int CSS_EMS = 3; 778 static const int CSS_EMS = 3;
779 779
780 static final int CSS_EXS = 4; 780 static const int CSS_EXS = 4;
781 781
782 static final int CSS_GRAD = 13; 782 static const int CSS_GRAD = 13;
783 783
784 static final int CSS_HZ = 16; 784 static const int CSS_HZ = 16;
785 785
786 static final int CSS_IDENT = 21; 786 static const int CSS_IDENT = 21;
787 787
788 static final int CSS_IN = 8; 788 static const int CSS_IN = 8;
789 789
790 static final int CSS_KHZ = 17; 790 static const int CSS_KHZ = 17;
791 791
792 static final int CSS_MM = 7; 792 static const int CSS_MM = 7;
793 793
794 static final int CSS_MS = 14; 794 static const int CSS_MS = 14;
795 795
796 static final int CSS_NUMBER = 1; 796 static const int CSS_NUMBER = 1;
797 797
798 static final int CSS_PC = 10; 798 static const int CSS_PC = 10;
799 799
800 static final int CSS_PERCENTAGE = 2; 800 static const int CSS_PERCENTAGE = 2;
801 801
802 static final int CSS_PT = 9; 802 static const int CSS_PT = 9;
803 803
804 static final int CSS_PX = 5; 804 static const int CSS_PX = 5;
805 805
806 static final int CSS_RAD = 12; 806 static const int CSS_RAD = 12;
807 807
808 static final int CSS_RECT = 24; 808 static const int CSS_RECT = 24;
809 809
810 static final int CSS_RGBCOLOR = 25; 810 static const int CSS_RGBCOLOR = 25;
811 811
812 static final int CSS_S = 15; 812 static const int CSS_S = 15;
813 813
814 static final int CSS_STRING = 19; 814 static const int CSS_STRING = 19;
815 815
816 static final int CSS_UNKNOWN = 0; 816 static const int CSS_UNKNOWN = 0;
817 817
818 static final int CSS_URI = 20; 818 static const int CSS_URI = 20;
819 819
820 static final int CSS_VH = 27; 820 static const int CSS_VH = 27;
821 821
822 static final int CSS_VMIN = 28; 822 static const int CSS_VMIN = 28;
823 823
824 static final int CSS_VW = 26; 824 static const int CSS_VW = 26;
825 825
826 final int primitiveType; 826 final int primitiveType;
827 827
828 Counter getCounterValue(); 828 Counter getCounterValue();
829 829
830 num getFloatValue(int unitType); 830 num getFloatValue(int unitType);
831 831
832 RGBColor getRGBColorValue(); 832 RGBColor getRGBColorValue();
833 833
834 Rect getRectValue(); 834 Rect getRectValue();
835 835
836 String getStringValue(); 836 String getStringValue();
837 837
838 void setFloatValue(int unitType, num floatValue); 838 void setFloatValue(int unitType, num floatValue);
839 839
840 void setStringValue(int stringType, String stringValue); 840 void setStringValue(int stringType, String stringValue);
841 } 841 }
842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
843 // for details. All rights reserved. Use of this source code is governed by a 843 // for details. All rights reserved. Use of this source code is governed by a
844 // BSD-style license that can be found in the LICENSE file. 844 // BSD-style license that can be found in the LICENSE file.
845 845
846 // WARNING: Do not edit - generated code. 846 // WARNING: Do not edit - generated code.
847 847
848 interface CSSRule { 848 interface CSSRule {
849 849
850 static final int CHARSET_RULE = 2; 850 static const int CHARSET_RULE = 2;
851 851
852 static final int FONT_FACE_RULE = 5; 852 static const int FONT_FACE_RULE = 5;
853 853
854 static final int IMPORT_RULE = 3; 854 static const int IMPORT_RULE = 3;
855 855
856 static final int MEDIA_RULE = 4; 856 static const int MEDIA_RULE = 4;
857 857
858 static final int PAGE_RULE = 6; 858 static const int PAGE_RULE = 6;
859 859
860 static final int STYLE_RULE = 1; 860 static const int STYLE_RULE = 1;
861 861
862 static final int UNKNOWN_RULE = 0; 862 static const int UNKNOWN_RULE = 0;
863 863
864 static final int WEBKIT_KEYFRAMES_RULE = 7; 864 static const int WEBKIT_KEYFRAMES_RULE = 7;
865 865
866 static final int WEBKIT_KEYFRAME_RULE = 8; 866 static const int WEBKIT_KEYFRAME_RULE = 8;
867 867
868 String cssText; 868 String cssText;
869 869
870 final CSSRule parentRule; 870 final CSSRule parentRule;
871 871
872 final CSSStyleSheet parentStyleSheet; 872 final CSSStyleSheet parentStyleSheet;
873 873
874 final int type; 874 final int type;
875 } 875 }
876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 interface CSSUnknownRule extends CSSRule { 958 interface CSSUnknownRule extends CSSRule {
959 } 959 }
960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
961 // for details. All rights reserved. Use of this source code is governed by a 961 // for details. All rights reserved. Use of this source code is governed by a
962 // BSD-style license that can be found in the LICENSE file. 962 // BSD-style license that can be found in the LICENSE file.
963 963
964 // WARNING: Do not edit - generated code. 964 // WARNING: Do not edit - generated code.
965 965
966 interface CSSValue { 966 interface CSSValue {
967 967
968 static final int CSS_CUSTOM = 3; 968 static const int CSS_CUSTOM = 3;
969 969
970 static final int CSS_INHERIT = 0; 970 static const int CSS_INHERIT = 0;
971 971
972 static final int CSS_PRIMITIVE_VALUE = 1; 972 static const int CSS_PRIMITIVE_VALUE = 1;
973 973
974 static final int CSS_VALUE_LIST = 2; 974 static const int CSS_VALUE_LIST = 2;
975 975
976 String cssText; 976 String cssText;
977 977
978 final int cssValueType; 978 final int cssValueType;
979 } 979 }
980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
981 // for details. All rights reserved. Use of this source code is governed by a 981 // for details. All rights reserved. Use of this source code is governed by a
982 // BSD-style license that can be found in the LICENSE file. 982 // BSD-style license that can be found in the LICENSE file.
983 983
984 // WARNING: Do not edit - generated code. 984 // WARNING: Do not edit - generated code.
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 1407
1408 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 1408 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
1409 1409
1410 void swapCache(); 1410 void swapCache();
1411 1411
1412 void update(); 1412 void update();
1413 } 1413 }
1414 1414
1415 interface DOMApplicationCache extends ApplicationCache { 1415 interface DOMApplicationCache extends ApplicationCache {
1416 1416
1417 static final int CHECKING = 2; 1417 static const int CHECKING = 2;
1418 1418
1419 static final int DOWNLOADING = 3; 1419 static const int DOWNLOADING = 3;
1420 1420
1421 static final int IDLE = 1; 1421 static const int IDLE = 1;
1422 1422
1423 static final int OBSOLETE = 5; 1423 static const int OBSOLETE = 5;
1424 1424
1425 static final int UNCACHED = 0; 1425 static const int UNCACHED = 0;
1426 1426
1427 static final int UPDATEREADY = 4; 1427 static const int UPDATEREADY = 4;
1428 } 1428 }
1429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1430 // for details. All rights reserved. Use of this source code is governed by a 1430 // for details. All rights reserved. Use of this source code is governed by a
1431 // BSD-style license that can be found in the LICENSE file. 1431 // BSD-style license that can be found in the LICENSE file.
1432 1432
1433 // WARNING: Do not edit - generated code. 1433 // WARNING: Do not edit - generated code.
1434 1434
1435 interface DOMError { 1435 interface DOMError {
1436 1436
1437 final String name; 1437 final String name;
1438 } 1438 }
1439 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1439 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1440 // for details. All rights reserved. Use of this source code is governed by a 1440 // for details. All rights reserved. Use of this source code is governed by a
1441 // BSD-style license that can be found in the LICENSE file. 1441 // BSD-style license that can be found in the LICENSE file.
1442 1442
1443 // WARNING: Do not edit - generated code. 1443 // WARNING: Do not edit - generated code.
1444 1444
1445 interface DOMException { 1445 interface DOMException {
1446 1446
1447 static final int ABORT_ERR = 20; 1447 static const int ABORT_ERR = 20;
1448 1448
1449 static final int DATA_CLONE_ERR = 25; 1449 static const int DATA_CLONE_ERR = 25;
1450 1450
1451 static final int DOMSTRING_SIZE_ERR = 2; 1451 static const int DOMSTRING_SIZE_ERR = 2;
1452 1452
1453 static final int HIERARCHY_REQUEST_ERR = 3; 1453 static const int HIERARCHY_REQUEST_ERR = 3;
1454 1454
1455 static final int INDEX_SIZE_ERR = 1; 1455 static const int INDEX_SIZE_ERR = 1;
1456 1456
1457 static final int INUSE_ATTRIBUTE_ERR = 10; 1457 static const int INUSE_ATTRIBUTE_ERR = 10;
1458 1458
1459 static final int INVALID_ACCESS_ERR = 15; 1459 static const int INVALID_ACCESS_ERR = 15;
1460 1460
1461 static final int INVALID_CHARACTER_ERR = 5; 1461 static const int INVALID_CHARACTER_ERR = 5;
1462 1462
1463 static final int INVALID_MODIFICATION_ERR = 13; 1463 static const int INVALID_MODIFICATION_ERR = 13;
1464 1464
1465 static final int INVALID_NODE_TYPE_ERR = 24; 1465 static const int INVALID_NODE_TYPE_ERR = 24;
1466 1466
1467 static final int INVALID_STATE_ERR = 11; 1467 static const int INVALID_STATE_ERR = 11;
1468 1468
1469 static final int NAMESPACE_ERR = 14; 1469 static const int NAMESPACE_ERR = 14;
1470 1470
1471 static final int NETWORK_ERR = 19; 1471 static const int NETWORK_ERR = 19;
1472 1472
1473 static final int NOT_FOUND_ERR = 8; 1473 static const int NOT_FOUND_ERR = 8;
1474 1474
1475 static final int NOT_SUPPORTED_ERR = 9; 1475 static const int NOT_SUPPORTED_ERR = 9;
1476 1476
1477 static final int NO_DATA_ALLOWED_ERR = 6; 1477 static const int NO_DATA_ALLOWED_ERR = 6;
1478 1478
1479 static final int NO_MODIFICATION_ALLOWED_ERR = 7; 1479 static const int NO_MODIFICATION_ALLOWED_ERR = 7;
1480 1480
1481 static final int QUOTA_EXCEEDED_ERR = 22; 1481 static const int QUOTA_EXCEEDED_ERR = 22;
1482 1482
1483 static final int SECURITY_ERR = 18; 1483 static const int SECURITY_ERR = 18;
1484 1484
1485 static final int SYNTAX_ERR = 12; 1485 static const int SYNTAX_ERR = 12;
1486 1486
1487 static final int TIMEOUT_ERR = 23; 1487 static const int TIMEOUT_ERR = 23;
1488 1488
1489 static final int TYPE_MISMATCH_ERR = 17; 1489 static const int TYPE_MISMATCH_ERR = 17;
1490 1490
1491 static final int URL_MISMATCH_ERR = 21; 1491 static const int URL_MISMATCH_ERR = 21;
1492 1492
1493 static final int VALIDATION_ERR = 16; 1493 static const int VALIDATION_ERR = 16;
1494 1494
1495 static final int WRONG_DOCUMENT_ERR = 4; 1495 static const int WRONG_DOCUMENT_ERR = 4;
1496 1496
1497 final int code; 1497 final int code;
1498 1498
1499 final String message; 1499 final String message;
1500 1500
1501 final String name; 1501 final String name;
1502 1502
1503 String toString(); 1503 String toString();
1504 } 1504 }
1505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1505 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
1954 1954
1955 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback); 1955 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback);
1956 1956
1957 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback]); 1957 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback]);
1958 1958
1959 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]); 1959 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]);
1960 } 1960 }
1961 1961
1962 interface DOMWindow extends Window { 1962 interface DOMWindow extends Window {
1963 1963
1964 static final int PERSISTENT = 1; 1964 static const int PERSISTENT = 1;
1965 1965
1966 static final int TEMPORARY = 0; 1966 static const int TEMPORARY = 0;
1967 } 1967 }
1968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1968 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1969 // for details. All rights reserved. Use of this source code is governed by a 1969 // for details. All rights reserved. Use of this source code is governed by a
1970 // BSD-style license that can be found in the LICENSE file. 1970 // BSD-style license that can be found in the LICENSE file.
1971 1971
1972 // WARNING: Do not edit - generated code. 1972 // WARNING: Do not edit - generated code.
1973 1973
1974 interface DataTransferItem { 1974 interface DataTransferItem {
1975 1975
1976 final String kind; 1976 final String kind;
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
2410 final AudioParam threshold; 2410 final AudioParam threshold;
2411 } 2411 }
2412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2412 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2413 // for details. All rights reserved. Use of this source code is governed by a 2413 // for details. All rights reserved. Use of this source code is governed by a
2414 // BSD-style license that can be found in the LICENSE file. 2414 // BSD-style license that can be found in the LICENSE file.
2415 2415
2416 // WARNING: Do not edit - generated code. 2416 // WARNING: Do not edit - generated code.
2417 2417
2418 interface EXTTextureFilterAnisotropic { 2418 interface EXTTextureFilterAnisotropic {
2419 2419
2420 static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; 2420 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
2421 2421
2422 static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; 2422 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
2423 } 2423 }
2424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2424 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2425 // for details. All rights reserved. Use of this source code is governed by a 2425 // for details. All rights reserved. Use of this source code is governed by a
2426 // BSD-style license that can be found in the LICENSE file. 2426 // BSD-style license that can be found in the LICENSE file.
2427 2427
2428 // WARNING: Do not edit - generated code. 2428 // WARNING: Do not edit - generated code.
2429 2429
2430 interface Element extends Node, ElementTraversal { 2430 interface Element extends Node, ElementTraversal {
2431 2431
2432 static final int ALLOW_KEYBOARD_INPUT = 1; 2432 static const int ALLOW_KEYBOARD_INPUT = 1;
2433 2433
2434 final int childElementCount; 2434 final int childElementCount;
2435 2435
2436 final DOMTokenList classList; 2436 final DOMTokenList classList;
2437 2437
2438 String className; 2438 String className;
2439 2439
2440 final int clientHeight; 2440 final int clientHeight;
2441 2441
2442 final int clientLeft; 2442 final int clientLeft;
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
2715 final String message; 2715 final String message;
2716 } 2716 }
2717 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2717 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2718 // for details. All rights reserved. Use of this source code is governed by a 2718 // for details. All rights reserved. Use of this source code is governed by a
2719 // BSD-style license that can be found in the LICENSE file. 2719 // BSD-style license that can be found in the LICENSE file.
2720 2720
2721 // WARNING: Do not edit - generated code. 2721 // WARNING: Do not edit - generated code.
2722 2722
2723 interface Event { 2723 interface Event {
2724 2724
2725 static final int AT_TARGET = 2; 2725 static const int AT_TARGET = 2;
2726 2726
2727 static final int BLUR = 8192; 2727 static const int BLUR = 8192;
2728 2728
2729 static final int BUBBLING_PHASE = 3; 2729 static const int BUBBLING_PHASE = 3;
2730 2730
2731 static final int CAPTURING_PHASE = 1; 2731 static const int CAPTURING_PHASE = 1;
2732 2732
2733 static final int CHANGE = 32768; 2733 static const int CHANGE = 32768;
2734 2734
2735 static final int CLICK = 64; 2735 static const int CLICK = 64;
2736 2736
2737 static final int DBLCLICK = 128; 2737 static const int DBLCLICK = 128;
2738 2738
2739 static final int DRAGDROP = 2048; 2739 static const int DRAGDROP = 2048;
2740 2740
2741 static final int FOCUS = 4096; 2741 static const int FOCUS = 4096;
2742 2742
2743 static final int KEYDOWN = 256; 2743 static const int KEYDOWN = 256;
2744 2744
2745 static final int KEYPRESS = 1024; 2745 static const int KEYPRESS = 1024;
2746 2746
2747 static final int KEYUP = 512; 2747 static const int KEYUP = 512;
2748 2748
2749 static final int MOUSEDOWN = 1; 2749 static const int MOUSEDOWN = 1;
2750 2750
2751 static final int MOUSEDRAG = 32; 2751 static const int MOUSEDRAG = 32;
2752 2752
2753 static final int MOUSEMOVE = 16; 2753 static const int MOUSEMOVE = 16;
2754 2754
2755 static final int MOUSEOUT = 8; 2755 static const int MOUSEOUT = 8;
2756 2756
2757 static final int MOUSEOVER = 4; 2757 static const int MOUSEOVER = 4;
2758 2758
2759 static final int MOUSEUP = 2; 2759 static const int MOUSEUP = 2;
2760 2760
2761 static final int NONE = 0; 2761 static const int NONE = 0;
2762 2762
2763 static final int SELECT = 16384; 2763 static const int SELECT = 16384;
2764 2764
2765 final bool bubbles; 2765 final bool bubbles;
2766 2766
2767 bool cancelBubble; 2767 bool cancelBubble;
2768 2768
2769 final bool cancelable; 2769 final bool cancelable;
2770 2770
2771 final Clipboard clipboardData; 2771 final Clipboard clipboardData;
2772 2772
2773 final EventTarget currentTarget; 2773 final EventTarget currentTarget;
(...skipping 21 matching lines...) Expand all
2795 void stopPropagation(); 2795 void stopPropagation();
2796 } 2796 }
2797 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2797 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2798 // for details. All rights reserved. Use of this source code is governed by a 2798 // for details. All rights reserved. Use of this source code is governed by a
2799 // BSD-style license that can be found in the LICENSE file. 2799 // BSD-style license that can be found in the LICENSE file.
2800 2800
2801 // WARNING: Do not edit - generated code. 2801 // WARNING: Do not edit - generated code.
2802 2802
2803 interface EventException { 2803 interface EventException {
2804 2804
2805 static final int DISPATCH_REQUEST_ERR = 1; 2805 static const int DISPATCH_REQUEST_ERR = 1;
2806 2806
2807 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0; 2807 static const int UNSPECIFIED_EVENT_TYPE_ERR = 0;
2808 2808
2809 final int code; 2809 final int code;
2810 2810
2811 final String message; 2811 final String message;
2812 2812
2813 final String name; 2813 final String name;
2814 2814
2815 String toString(); 2815 String toString();
2816 } 2816 }
2817 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2817 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2818 // for details. All rights reserved. Use of this source code is governed by a 2818 // for details. All rights reserved. Use of this source code is governed by a
2819 // BSD-style license that can be found in the LICENSE file. 2819 // BSD-style license that can be found in the LICENSE file.
2820 2820
2821 // WARNING: Do not edit - generated code. 2821 // WARNING: Do not edit - generated code.
2822 2822
2823 interface EventSource extends EventTarget default _EventSourceFactoryProvider { 2823 interface EventSource extends EventTarget default _EventSourceFactoryProvider {
2824 2824
2825 EventSource(String scriptUrl); 2825 EventSource(String scriptUrl);
2826 2826
2827 static final int CLOSED = 2; 2827 static const int CLOSED = 2;
2828 2828
2829 static final int CONNECTING = 0; 2829 static const int CONNECTING = 0;
2830 2830
2831 static final int OPEN = 1; 2831 static const int OPEN = 1;
2832 2832
2833 final String URL; 2833 final String URL;
2834 2834
2835 final int readyState; 2835 final int readyState;
2836 2836
2837 final String url; 2837 final String url;
2838 2838
2839 void addEventListener(String type, EventListener listener, [bool useCapture]); 2839 void addEventListener(String type, EventListener listener, [bool useCapture]);
2840 2840
2841 void close(); 2841 void close();
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
2904 File file(); 2904 File file();
2905 } 2905 }
2906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2906 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2907 // for details. All rights reserved. Use of this source code is governed by a 2907 // for details. All rights reserved. Use of this source code is governed by a
2908 // BSD-style license that can be found in the LICENSE file. 2908 // BSD-style license that can be found in the LICENSE file.
2909 2909
2910 // WARNING: Do not edit - generated code. 2910 // WARNING: Do not edit - generated code.
2911 2911
2912 interface FileError { 2912 interface FileError {
2913 2913
2914 static final int ABORT_ERR = 3; 2914 static const int ABORT_ERR = 3;
2915 2915
2916 static final int ENCODING_ERR = 5; 2916 static const int ENCODING_ERR = 5;
2917 2917
2918 static final int INVALID_MODIFICATION_ERR = 9; 2918 static const int INVALID_MODIFICATION_ERR = 9;
2919 2919
2920 static final int INVALID_STATE_ERR = 7; 2920 static const int INVALID_STATE_ERR = 7;
2921 2921
2922 static final int NOT_FOUND_ERR = 1; 2922 static const int NOT_FOUND_ERR = 1;
2923 2923
2924 static final int NOT_READABLE_ERR = 4; 2924 static const int NOT_READABLE_ERR = 4;
2925 2925
2926 static final int NO_MODIFICATION_ALLOWED_ERR = 6; 2926 static const int NO_MODIFICATION_ALLOWED_ERR = 6;
2927 2927
2928 static final int PATH_EXISTS_ERR = 12; 2928 static const int PATH_EXISTS_ERR = 12;
2929 2929
2930 static final int QUOTA_EXCEEDED_ERR = 10; 2930 static const int QUOTA_EXCEEDED_ERR = 10;
2931 2931
2932 static final int SECURITY_ERR = 2; 2932 static const int SECURITY_ERR = 2;
2933 2933
2934 static final int SYNTAX_ERR = 8; 2934 static const int SYNTAX_ERR = 8;
2935 2935
2936 static final int TYPE_MISMATCH_ERR = 11; 2936 static const int TYPE_MISMATCH_ERR = 11;
2937 2937
2938 final int code; 2938 final int code;
2939 } 2939 }
2940 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2940 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2941 // for details. All rights reserved. Use of this source code is governed by a 2941 // for details. All rights reserved. Use of this source code is governed by a
2942 // BSD-style license that can be found in the LICENSE file. 2942 // BSD-style license that can be found in the LICENSE file.
2943 2943
2944 // WARNING: Do not edit - generated code. 2944 // WARNING: Do not edit - generated code.
2945 2945
2946 interface FileException { 2946 interface FileException {
2947 2947
2948 static final int ABORT_ERR = 3; 2948 static const int ABORT_ERR = 3;
2949 2949
2950 static final int ENCODING_ERR = 5; 2950 static const int ENCODING_ERR = 5;
2951 2951
2952 static final int INVALID_MODIFICATION_ERR = 9; 2952 static const int INVALID_MODIFICATION_ERR = 9;
2953 2953
2954 static final int INVALID_STATE_ERR = 7; 2954 static const int INVALID_STATE_ERR = 7;
2955 2955
2956 static final int NOT_FOUND_ERR = 1; 2956 static const int NOT_FOUND_ERR = 1;
2957 2957
2958 static final int NOT_READABLE_ERR = 4; 2958 static const int NOT_READABLE_ERR = 4;
2959 2959
2960 static final int NO_MODIFICATION_ALLOWED_ERR = 6; 2960 static const int NO_MODIFICATION_ALLOWED_ERR = 6;
2961 2961
2962 static final int PATH_EXISTS_ERR = 12; 2962 static const int PATH_EXISTS_ERR = 12;
2963 2963
2964 static final int QUOTA_EXCEEDED_ERR = 10; 2964 static const int QUOTA_EXCEEDED_ERR = 10;
2965 2965
2966 static final int SECURITY_ERR = 2; 2966 static const int SECURITY_ERR = 2;
2967 2967
2968 static final int SYNTAX_ERR = 8; 2968 static const int SYNTAX_ERR = 8;
2969 2969
2970 static final int TYPE_MISMATCH_ERR = 11; 2970 static const int TYPE_MISMATCH_ERR = 11;
2971 2971
2972 final int code; 2972 final int code;
2973 2973
2974 final String message; 2974 final String message;
2975 2975
2976 final String name; 2976 final String name;
2977 2977
2978 String toString(); 2978 String toString();
2979 } 2979 }
2980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 11 matching lines...) Expand all
2992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2992 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2993 // for details. All rights reserved. Use of this source code is governed by a 2993 // for details. All rights reserved. Use of this source code is governed by a
2994 // BSD-style license that can be found in the LICENSE file. 2994 // BSD-style license that can be found in the LICENSE file.
2995 2995
2996 // WARNING: Do not edit - generated code. 2996 // WARNING: Do not edit - generated code.
2997 2997
2998 interface FileReader extends EventTarget default _FileReaderFactoryProvider { 2998 interface FileReader extends EventTarget default _FileReaderFactoryProvider {
2999 2999
3000 FileReader(); 3000 FileReader();
3001 3001
3002 static final int DONE = 2; 3002 static const int DONE = 2;
3003 3003
3004 static final int EMPTY = 0; 3004 static const int EMPTY = 0;
3005 3005
3006 static final int LOADING = 1; 3006 static const int LOADING = 1;
3007 3007
3008 final FileError error; 3008 final FileError error;
3009 3009
3010 final int readyState; 3010 final int readyState;
3011 3011
3012 final Object result; 3012 final Object result;
3013 3013
3014 void abort(); 3014 void abort();
3015 3015
3016 void addEventListener(String type, EventListener listener, [bool useCapture]); 3016 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
3053 3053
3054 typedef bool FileSystemCallback(DOMFileSystem fileSystem); 3054 typedef bool FileSystemCallback(DOMFileSystem fileSystem);
3055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3055 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3056 // for details. All rights reserved. Use of this source code is governed by a 3056 // for details. All rights reserved. Use of this source code is governed by a
3057 // BSD-style license that can be found in the LICENSE file. 3057 // BSD-style license that can be found in the LICENSE file.
3058 3058
3059 // WARNING: Do not edit - generated code. 3059 // WARNING: Do not edit - generated code.
3060 3060
3061 interface FileWriter extends EventTarget { 3061 interface FileWriter extends EventTarget {
3062 3062
3063 static final int DONE = 2; 3063 static const int DONE = 2;
3064 3064
3065 static final int INIT = 0; 3065 static const int INIT = 0;
3066 3066
3067 static final int WRITING = 1; 3067 static const int WRITING = 1;
3068 3068
3069 final FileError error; 3069 final FileError error;
3070 3070
3071 final int length; 3071 final int length;
3072 3072
3073 final int position; 3073 final int position;
3074 3074
3075 final int readyState; 3075 final int readyState;
3076 3076
3077 void abort(); 3077 void abort();
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3120 // WARNING: Do not edit - generated code. 3120 // WARNING: Do not edit - generated code.
3121 3121
3122 interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac toryProvider { 3122 interface Float32Array extends ArrayBufferView, List<num> default _TypedArrayFac toryProvider {
3123 3123
3124 Float32Array(int length); 3124 Float32Array(int length);
3125 3125
3126 Float32Array.fromList(List<num> list); 3126 Float32Array.fromList(List<num> list);
3127 3127
3128 Float32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 3128 Float32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
3129 3129
3130 static final int BYTES_PER_ELEMENT = 4; 3130 static const int BYTES_PER_ELEMENT = 4;
3131 3131
3132 final int length; 3132 final int length;
3133 3133
3134 void setElements(Object array, [int offset]); 3134 void setElements(Object array, [int offset]);
3135 3135
3136 Float32Array subarray(int start, [int end]); 3136 Float32Array subarray(int start, [int end]);
3137 } 3137 }
3138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3139 // for details. All rights reserved. Use of this source code is governed by a 3139 // for details. All rights reserved. Use of this source code is governed by a
3140 // BSD-style license that can be found in the LICENSE file. 3140 // BSD-style license that can be found in the LICENSE file.
3141 3141
3142 // WARNING: Do not edit - generated code. 3142 // WARNING: Do not edit - generated code.
3143 3143
3144 interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac toryProvider { 3144 interface Float64Array extends ArrayBufferView, List<num> default _TypedArrayFac toryProvider {
3145 3145
3146 Float64Array(int length); 3146 Float64Array(int length);
3147 3147
3148 Float64Array.fromList(List<num> list); 3148 Float64Array.fromList(List<num> list);
3149 3149
3150 Float64Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 3150 Float64Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
3151 3151
3152 static final int BYTES_PER_ELEMENT = 8; 3152 static const int BYTES_PER_ELEMENT = 8;
3153 3153
3154 final int length; 3154 final int length;
3155 3155
3156 void setElements(Object array, [int offset]); 3156 void setElements(Object array, [int offset]);
3157 3157
3158 Float64Array subarray(int start, [int end]); 3158 Float64Array subarray(int start, [int end]);
3159 } 3159 }
3160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3161 // for details. All rights reserved. Use of this source code is governed by a 3161 // for details. All rights reserved. Use of this source code is governed by a
3162 // BSD-style license that can be found in the LICENSE file. 3162 // BSD-style license that can be found in the LICENSE file.
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after
4200 void stop(); 4200 void stop();
4201 } 4201 }
4202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4203 // for details. All rights reserved. Use of this source code is governed by a 4203 // for details. All rights reserved. Use of this source code is governed by a
4204 // BSD-style license that can be found in the LICENSE file. 4204 // BSD-style license that can be found in the LICENSE file.
4205 4205
4206 // WARNING: Do not edit - generated code. 4206 // WARNING: Do not edit - generated code.
4207 4207
4208 interface HTMLMediaElement extends HTMLElement { 4208 interface HTMLMediaElement extends HTMLElement {
4209 4209
4210 static final int HAVE_CURRENT_DATA = 2; 4210 static const int HAVE_CURRENT_DATA = 2;
4211 4211
4212 static final int HAVE_ENOUGH_DATA = 4; 4212 static const int HAVE_ENOUGH_DATA = 4;
4213 4213
4214 static final int HAVE_FUTURE_DATA = 3; 4214 static const int HAVE_FUTURE_DATA = 3;
4215 4215
4216 static final int HAVE_METADATA = 1; 4216 static const int HAVE_METADATA = 1;
4217 4217
4218 static final int HAVE_NOTHING = 0; 4218 static const int HAVE_NOTHING = 0;
4219 4219
4220 static final int NETWORK_EMPTY = 0; 4220 static const int NETWORK_EMPTY = 0;
4221 4221
4222 static final int NETWORK_IDLE = 1; 4222 static const int NETWORK_IDLE = 1;
4223 4223
4224 static final int NETWORK_LOADING = 2; 4224 static const int NETWORK_LOADING = 2;
4225 4225
4226 static final int NETWORK_NO_SOURCE = 3; 4226 static const int NETWORK_NO_SOURCE = 3;
4227 4227
4228 bool autoplay; 4228 bool autoplay;
4229 4229
4230 final TimeRanges buffered; 4230 final TimeRanges buffered;
4231 4231
4232 MediaController controller; 4232 MediaController controller;
4233 4233
4234 bool controls; 4234 bool controls;
4235 4235
4236 final String currentSrc; 4236 final String currentSrc;
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
4958 String text; 4958 String text;
4959 } 4959 }
4960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4960 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4961 // for details. All rights reserved. Use of this source code is governed by a 4961 // for details. All rights reserved. Use of this source code is governed by a
4962 // BSD-style license that can be found in the LICENSE file. 4962 // BSD-style license that can be found in the LICENSE file.
4963 4963
4964 // WARNING: Do not edit - generated code. 4964 // WARNING: Do not edit - generated code.
4965 4965
4966 interface HTMLTrackElement extends HTMLElement { 4966 interface HTMLTrackElement extends HTMLElement {
4967 4967
4968 static final int ERROR = 3; 4968 static const int ERROR = 3;
4969 4969
4970 static final int LOADED = 2; 4970 static const int LOADED = 2;
4971 4971
4972 static final int LOADING = 1; 4972 static const int LOADING = 1;
4973 4973
4974 static final int NONE = 0; 4974 static const int NONE = 0;
4975 4975
4976 bool defaultValue; 4976 bool defaultValue;
4977 4977
4978 String kind; 4978 String kind;
4979 4979
4980 String label; 4980 String label;
4981 4981
4982 final int readyState; 4982 final int readyState;
4983 4983
4984 String src; 4984 String src;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
5086 interface IDBAny { 5086 interface IDBAny {
5087 } 5087 }
5088 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5088 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5089 // for details. All rights reserved. Use of this source code is governed by a 5089 // for details. All rights reserved. Use of this source code is governed by a
5090 // BSD-style license that can be found in the LICENSE file. 5090 // BSD-style license that can be found in the LICENSE file.
5091 5091
5092 // WARNING: Do not edit - generated code. 5092 // WARNING: Do not edit - generated code.
5093 5093
5094 interface IDBCursor { 5094 interface IDBCursor {
5095 5095
5096 static final int NEXT = 0; 5096 static const int NEXT = 0;
5097 5097
5098 static final int NEXT_NO_DUPLICATE = 1; 5098 static const int NEXT_NO_DUPLICATE = 1;
5099 5099
5100 static final int PREV = 2; 5100 static const int PREV = 2;
5101 5101
5102 static final int PREV_NO_DUPLICATE = 3; 5102 static const int PREV_NO_DUPLICATE = 3;
5103 5103
5104 final String direction; 5104 final String direction;
5105 5105
5106 final /*IDBKey*/ key; 5106 final /*IDBKey*/ key;
5107 5107
5108 final /*IDBKey*/ primaryKey; 5108 final /*IDBKey*/ primaryKey;
5109 5109
5110 final /*IDBAny*/ source; 5110 final /*IDBAny*/ source;
5111 5111
5112 void advance(int count); 5112 void advance(int count);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
5158 IDBTransaction transaction(storeName_OR_storeNames, String mode); 5158 IDBTransaction transaction(storeName_OR_storeNames, String mode);
5159 } 5159 }
5160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5160 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5161 // for details. All rights reserved. Use of this source code is governed by a 5161 // for details. All rights reserved. Use of this source code is governed by a
5162 // BSD-style license that can be found in the LICENSE file. 5162 // BSD-style license that can be found in the LICENSE file.
5163 5163
5164 // WARNING: Do not edit - generated code. 5164 // WARNING: Do not edit - generated code.
5165 5165
5166 interface IDBDatabaseException { 5166 interface IDBDatabaseException {
5167 5167
5168 static final int ABORT_ERR = 20; 5168 static const int ABORT_ERR = 20;
5169 5169
5170 static final int CONSTRAINT_ERR = 4; 5170 static const int CONSTRAINT_ERR = 4;
5171 5171
5172 static final int DATA_ERR = 5; 5172 static const int DATA_ERR = 5;
5173 5173
5174 static final int NON_TRANSIENT_ERR = 2; 5174 static const int NON_TRANSIENT_ERR = 2;
5175 5175
5176 static final int NOT_ALLOWED_ERR = 6; 5176 static const int NOT_ALLOWED_ERR = 6;
5177 5177
5178 static final int NOT_FOUND_ERR = 8; 5178 static const int NOT_FOUND_ERR = 8;
5179 5179
5180 static final int NO_ERR = 0; 5180 static const int NO_ERR = 0;
5181 5181
5182 static final int QUOTA_ERR = 22; 5182 static const int QUOTA_ERR = 22;
5183 5183
5184 static final int READ_ONLY_ERR = 9; 5184 static const int READ_ONLY_ERR = 9;
5185 5185
5186 static final int TIMEOUT_ERR = 23; 5186 static const int TIMEOUT_ERR = 23;
5187 5187
5188 static final int TRANSACTION_INACTIVE_ERR = 7; 5188 static const int TRANSACTION_INACTIVE_ERR = 7;
5189 5189
5190 static final int UNKNOWN_ERR = 1; 5190 static const int UNKNOWN_ERR = 1;
5191 5191
5192 static final int VER_ERR = 12; 5192 static const int VER_ERR = 12;
5193 5193
5194 final int code; 5194 final int code;
5195 5195
5196 final String message; 5196 final String message;
5197 5197
5198 final String name; 5198 final String name;
5199 5199
5200 String toString(); 5200 String toString();
5201 } 5201 }
5202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
5352 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5352 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5353 } 5353 }
5354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5354 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5355 // for details. All rights reserved. Use of this source code is governed by a 5355 // for details. All rights reserved. Use of this source code is governed by a
5356 // BSD-style license that can be found in the LICENSE file. 5356 // BSD-style license that can be found in the LICENSE file.
5357 5357
5358 // WARNING: Do not edit - generated code. 5358 // WARNING: Do not edit - generated code.
5359 5359
5360 interface IDBTransaction extends EventTarget { 5360 interface IDBTransaction extends EventTarget {
5361 5361
5362 static final int READ_ONLY = 0; 5362 static const int READ_ONLY = 0;
5363 5363
5364 static final int READ_WRITE = 1; 5364 static const int READ_WRITE = 1;
5365 5365
5366 static final int VERSION_CHANGE = 2; 5366 static const int VERSION_CHANGE = 2;
5367 5367
5368 final IDBDatabase db; 5368 final IDBDatabase db;
5369 5369
5370 final DOMError error; 5370 final DOMError error;
5371 5371
5372 final String mode; 5372 final String mode;
5373 5373
5374 void abort(); 5374 void abort();
5375 5375
5376 void addEventListener(String type, EventListener listener, [bool useCapture]); 5376 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
5453 // WARNING: Do not edit - generated code. 5453 // WARNING: Do not edit - generated code.
5454 5454
5455 interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider { 5455 interface Int16Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider {
5456 5456
5457 Int16Array(int length); 5457 Int16Array(int length);
5458 5458
5459 Int16Array.fromList(List<int> list); 5459 Int16Array.fromList(List<int> list);
5460 5460
5461 Int16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 5461 Int16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
5462 5462
5463 static final int BYTES_PER_ELEMENT = 2; 5463 static const int BYTES_PER_ELEMENT = 2;
5464 5464
5465 final int length; 5465 final int length;
5466 5466
5467 void setElements(Object array, [int offset]); 5467 void setElements(Object array, [int offset]);
5468 5468
5469 Int16Array subarray(int start, [int end]); 5469 Int16Array subarray(int start, [int end]);
5470 } 5470 }
5471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5472 // for details. All rights reserved. Use of this source code is governed by a 5472 // for details. All rights reserved. Use of this source code is governed by a
5473 // BSD-style license that can be found in the LICENSE file. 5473 // BSD-style license that can be found in the LICENSE file.
5474 5474
5475 // WARNING: Do not edit - generated code. 5475 // WARNING: Do not edit - generated code.
5476 5476
5477 interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider { 5477 interface Int32Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider {
5478 5478
5479 Int32Array(int length); 5479 Int32Array(int length);
5480 5480
5481 Int32Array.fromList(List<int> list); 5481 Int32Array.fromList(List<int> list);
5482 5482
5483 Int32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 5483 Int32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
5484 5484
5485 static final int BYTES_PER_ELEMENT = 4; 5485 static const int BYTES_PER_ELEMENT = 4;
5486 5486
5487 final int length; 5487 final int length;
5488 5488
5489 void setElements(Object array, [int offset]); 5489 void setElements(Object array, [int offset]);
5490 5490
5491 Int32Array subarray(int start, [int end]); 5491 Int32Array subarray(int start, [int end]);
5492 } 5492 }
5493 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5493 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5494 // for details. All rights reserved. Use of this source code is governed by a 5494 // for details. All rights reserved. Use of this source code is governed by a
5495 // BSD-style license that can be found in the LICENSE file. 5495 // BSD-style license that can be found in the LICENSE file.
5496 5496
5497 // WARNING: Do not edit - generated code. 5497 // WARNING: Do not edit - generated code.
5498 5498
5499 interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor yProvider { 5499 interface Int8Array extends ArrayBufferView, List<int> default _TypedArrayFactor yProvider {
5500 5500
5501 Int8Array(int length); 5501 Int8Array(int length);
5502 5502
5503 Int8Array.fromList(List<int> list); 5503 Int8Array.fromList(List<int> list);
5504 5504
5505 Int8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 5505 Int8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
5506 5506
5507 static final int BYTES_PER_ELEMENT = 1; 5507 static const int BYTES_PER_ELEMENT = 1;
5508 5508
5509 final int length; 5509 final int length;
5510 5510
5511 void setElements(Object array, [int offset]); 5511 void setElements(Object array, [int offset]);
5512 5512
5513 Int8Array subarray(int start, [int end]); 5513 Int8Array subarray(int start, [int end]);
5514 } 5514 }
5515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5515 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5516 // for details. All rights reserved. Use of this source code is governed by a 5516 // for details. All rights reserved. Use of this source code is governed by a
5517 // BSD-style license that can be found in the LICENSE file. 5517 // BSD-style license that can be found in the LICENSE file.
5518 5518
5519 // WARNING: Do not edit - generated code. 5519 // WARNING: Do not edit - generated code.
5520 5520
5521 interface JavaScriptAudioNode extends AudioNode, EventTarget { 5521 interface JavaScriptAudioNode extends AudioNode, EventTarget {
5522 5522
5523 final int bufferSize; 5523 final int bufferSize;
5524 } 5524 }
5525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5525 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5526 // for details. All rights reserved. Use of this source code is governed by a 5526 // for details. All rights reserved. Use of this source code is governed by a
5527 // BSD-style license that can be found in the LICENSE file. 5527 // BSD-style license that can be found in the LICENSE file.
5528 5528
5529 // WARNING: Do not edit - generated code. 5529 // WARNING: Do not edit - generated code.
5530 5530
5531 interface JavaScriptCallFrame { 5531 interface JavaScriptCallFrame {
5532 5532
5533 static final int CATCH_SCOPE = 4; 5533 static const int CATCH_SCOPE = 4;
5534 5534
5535 static final int CLOSURE_SCOPE = 3; 5535 static const int CLOSURE_SCOPE = 3;
5536 5536
5537 static final int GLOBAL_SCOPE = 0; 5537 static const int GLOBAL_SCOPE = 0;
5538 5538
5539 static final int LOCAL_SCOPE = 1; 5539 static const int LOCAL_SCOPE = 1;
5540 5540
5541 static final int WITH_SCOPE = 2; 5541 static const int WITH_SCOPE = 2;
5542 5542
5543 final JavaScriptCallFrame caller; 5543 final JavaScriptCallFrame caller;
5544 5544
5545 final int column; 5545 final int column;
5546 5546
5547 final String functionName; 5547 final String functionName;
5548 5548
5549 final int line; 5549 final int line;
5550 5550
5551 final List scopeChain; 5551 final List scopeChain;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
5683 final HTMLMediaElement mediaElement; 5683 final HTMLMediaElement mediaElement;
5684 } 5684 }
5685 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5685 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5686 // for details. All rights reserved. Use of this source code is governed by a 5686 // for details. All rights reserved. Use of this source code is governed by a
5687 // BSD-style license that can be found in the LICENSE file. 5687 // BSD-style license that can be found in the LICENSE file.
5688 5688
5689 // WARNING: Do not edit - generated code. 5689 // WARNING: Do not edit - generated code.
5690 5690
5691 interface MediaError { 5691 interface MediaError {
5692 5692
5693 static final int MEDIA_ERR_ABORTED = 1; 5693 static const int MEDIA_ERR_ABORTED = 1;
5694 5694
5695 static final int MEDIA_ERR_DECODE = 3; 5695 static const int MEDIA_ERR_DECODE = 3;
5696 5696
5697 static final int MEDIA_ERR_ENCRYPTED = 5; 5697 static const int MEDIA_ERR_ENCRYPTED = 5;
5698 5698
5699 static final int MEDIA_ERR_NETWORK = 2; 5699 static const int MEDIA_ERR_NETWORK = 2;
5700 5700
5701 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; 5701 static const int MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
5702 5702
5703 final int code; 5703 final int code;
5704 } 5704 }
5705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5705 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5706 // for details. All rights reserved. Use of this source code is governed by a 5706 // for details. All rights reserved. Use of this source code is governed by a
5707 // BSD-style license that can be found in the LICENSE file. 5707 // BSD-style license that can be found in the LICENSE file.
5708 5708
5709 // WARNING: Do not edit - generated code. 5709 // WARNING: Do not edit - generated code.
5710 5710
5711 interface MediaKeyError { 5711 interface MediaKeyError {
5712 5712
5713 static final int MEDIA_KEYERR_CLIENT = 2; 5713 static const int MEDIA_KEYERR_CLIENT = 2;
5714 5714
5715 static final int MEDIA_KEYERR_DOMAIN = 6; 5715 static const int MEDIA_KEYERR_DOMAIN = 6;
5716 5716
5717 static final int MEDIA_KEYERR_HARDWARECHANGE = 5; 5717 static const int MEDIA_KEYERR_HARDWARECHANGE = 5;
5718 5718
5719 static final int MEDIA_KEYERR_OUTPUT = 4; 5719 static const int MEDIA_KEYERR_OUTPUT = 4;
5720 5720
5721 static final int MEDIA_KEYERR_SERVICE = 3; 5721 static const int MEDIA_KEYERR_SERVICE = 3;
5722 5722
5723 static final int MEDIA_KEYERR_UNKNOWN = 1; 5723 static const int MEDIA_KEYERR_UNKNOWN = 1;
5724 5724
5725 final int code; 5725 final int code;
5726 } 5726 }
5727 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5727 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5728 // for details. All rights reserved. Use of this source code is governed by a 5728 // for details. All rights reserved. Use of this source code is governed by a
5729 // BSD-style license that can be found in the LICENSE file. 5729 // BSD-style license that can be found in the LICENSE file.
5730 5730
5731 // WARNING: Do not edit - generated code. 5731 // WARNING: Do not edit - generated code.
5732 5732
5733 interface MediaKeyEvent extends Event { 5733 interface MediaKeyEvent extends Event {
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
5821 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5821 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5822 // for details. All rights reserved. Use of this source code is governed by a 5822 // for details. All rights reserved. Use of this source code is governed by a
5823 // BSD-style license that can be found in the LICENSE file. 5823 // BSD-style license that can be found in the LICENSE file.
5824 5824
5825 // WARNING: Do not edit - generated code. 5825 // WARNING: Do not edit - generated code.
5826 5826
5827 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider { 5827 interface MediaStream extends EventTarget default _MediaStreamFactoryProvider {
5828 5828
5829 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks ); 5829 MediaStream(MediaStreamTrackList audioTracks, MediaStreamTrackList videoTracks );
5830 5830
5831 static final int ENDED = 2; 5831 static const int ENDED = 2;
5832 5832
5833 static final int LIVE = 1; 5833 static const int LIVE = 1;
5834 5834
5835 final MediaStreamTrackList audioTracks; 5835 final MediaStreamTrackList audioTracks;
5836 5836
5837 final String label; 5837 final String label;
5838 5838
5839 final int readyState; 5839 final int readyState;
5840 5840
5841 final MediaStreamTrackList videoTracks; 5841 final MediaStreamTrackList videoTracks;
5842 5842
5843 void addEventListener(String type, EventListener listener, [bool useCapture]); 5843 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
5879 MediaStream item(int index); 5879 MediaStream item(int index);
5880 } 5880 }
5881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5882 // for details. All rights reserved. Use of this source code is governed by a 5882 // for details. All rights reserved. Use of this source code is governed by a
5883 // BSD-style license that can be found in the LICENSE file. 5883 // BSD-style license that can be found in the LICENSE file.
5884 5884
5885 // WARNING: Do not edit - generated code. 5885 // WARNING: Do not edit - generated code.
5886 5886
5887 interface MediaStreamTrack extends EventTarget { 5887 interface MediaStreamTrack extends EventTarget {
5888 5888
5889 static final int ENDED = 2; 5889 static const int ENDED = 2;
5890 5890
5891 static final int LIVE = 0; 5891 static const int LIVE = 0;
5892 5892
5893 static final int MUTED = 1; 5893 static const int MUTED = 1;
5894 5894
5895 bool enabled; 5895 bool enabled;
5896 5896
5897 final String kind; 5897 final String kind;
5898 5898
5899 final String label; 5899 final String label;
5900 5900
5901 final int readyState; 5901 final int readyState;
5902 5902
5903 void addEventListener(String type, EventListener listener, [bool useCapture]); 5903 void addEventListener(String type, EventListener listener, [bool useCapture]);
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
6085 6085
6086 typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver o bserver); 6086 typedef bool MutationCallback(List<MutationRecord> mutations, MutationObserver o bserver);
6087 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6087 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6088 // for details. All rights reserved. Use of this source code is governed by a 6088 // for details. All rights reserved. Use of this source code is governed by a
6089 // BSD-style license that can be found in the LICENSE file. 6089 // BSD-style license that can be found in the LICENSE file.
6090 6090
6091 // WARNING: Do not edit - generated code. 6091 // WARNING: Do not edit - generated code.
6092 6092
6093 interface MutationEvent extends Event { 6093 interface MutationEvent extends Event {
6094 6094
6095 static final int ADDITION = 2; 6095 static const int ADDITION = 2;
6096 6096
6097 static final int MODIFICATION = 1; 6097 static const int MODIFICATION = 1;
6098 6098
6099 static final int REMOVAL = 3; 6099 static const int REMOVAL = 3;
6100 6100
6101 final int attrChange; 6101 final int attrChange;
6102 6102
6103 final String attrName; 6103 final String attrName;
6104 6104
6105 final String newValue; 6105 final String newValue;
6106 6106
6107 final String prevValue; 6107 final String prevValue;
6108 6108
6109 final Node relatedNode; 6109 final Node relatedNode;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
6225 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]); 6225 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]);
6226 } 6226 }
6227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6227 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6228 // for details. All rights reserved. Use of this source code is governed by a 6228 // for details. All rights reserved. Use of this source code is governed by a
6229 // BSD-style license that can be found in the LICENSE file. 6229 // BSD-style license that can be found in the LICENSE file.
6230 6230
6231 // WARNING: Do not edit - generated code. 6231 // WARNING: Do not edit - generated code.
6232 6232
6233 interface NavigatorUserMediaError { 6233 interface NavigatorUserMediaError {
6234 6234
6235 static final int PERMISSION_DENIED = 1; 6235 static const int PERMISSION_DENIED = 1;
6236 6236
6237 final int code; 6237 final int code;
6238 } 6238 }
6239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6239 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6240 // for details. All rights reserved. Use of this source code is governed by a 6240 // for details. All rights reserved. Use of this source code is governed by a
6241 // BSD-style license that can be found in the LICENSE file. 6241 // BSD-style license that can be found in the LICENSE file.
6242 6242
6243 // WARNING: Do not edit - generated code. 6243 // WARNING: Do not edit - generated code.
6244 6244
6245 typedef bool NavigatorUserMediaErrorCallback(NavigatorUserMediaError error); 6245 typedef bool NavigatorUserMediaErrorCallback(NavigatorUserMediaError error);
6246 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6246 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6247 // for details. All rights reserved. Use of this source code is governed by a 6247 // for details. All rights reserved. Use of this source code is governed by a
6248 // BSD-style license that can be found in the LICENSE file. 6248 // BSD-style license that can be found in the LICENSE file.
6249 6249
6250 // WARNING: Do not edit - generated code. 6250 // WARNING: Do not edit - generated code.
6251 6251
6252 typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream); 6252 typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream);
6253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6253 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6254 // for details. All rights reserved. Use of this source code is governed by a 6254 // for details. All rights reserved. Use of this source code is governed by a
6255 // BSD-style license that can be found in the LICENSE file. 6255 // BSD-style license that can be found in the LICENSE file.
6256 6256
6257 // WARNING: Do not edit - generated code. 6257 // WARNING: Do not edit - generated code.
6258 6258
6259 interface Node extends EventTarget { 6259 interface Node extends EventTarget {
6260 6260
6261 static final int ATTRIBUTE_NODE = 2; 6261 static const int ATTRIBUTE_NODE = 2;
6262 6262
6263 static final int CDATA_SECTION_NODE = 4; 6263 static const int CDATA_SECTION_NODE = 4;
6264 6264
6265 static final int COMMENT_NODE = 8; 6265 static const int COMMENT_NODE = 8;
6266 6266
6267 static final int DOCUMENT_FRAGMENT_NODE = 11; 6267 static const int DOCUMENT_FRAGMENT_NODE = 11;
6268 6268
6269 static final int DOCUMENT_NODE = 9; 6269 static const int DOCUMENT_NODE = 9;
6270 6270
6271 static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10; 6271 static const int DOCUMENT_POSITION_CONTAINED_BY = 0x10;
6272 6272
6273 static final int DOCUMENT_POSITION_CONTAINS = 0x08; 6273 static const int DOCUMENT_POSITION_CONTAINS = 0x08;
6274 6274
6275 static final int DOCUMENT_POSITION_DISCONNECTED = 0x01; 6275 static const int DOCUMENT_POSITION_DISCONNECTED = 0x01;
6276 6276
6277 static final int DOCUMENT_POSITION_FOLLOWING = 0x04; 6277 static const int DOCUMENT_POSITION_FOLLOWING = 0x04;
6278 6278
6279 static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; 6279 static const int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
6280 6280
6281 static final int DOCUMENT_POSITION_PRECEDING = 0x02; 6281 static const int DOCUMENT_POSITION_PRECEDING = 0x02;
6282 6282
6283 static final int DOCUMENT_TYPE_NODE = 10; 6283 static const int DOCUMENT_TYPE_NODE = 10;
6284 6284
6285 static final int ELEMENT_NODE = 1; 6285 static const int ELEMENT_NODE = 1;
6286 6286
6287 static final int ENTITY_NODE = 6; 6287 static const int ENTITY_NODE = 6;
6288 6288
6289 static final int ENTITY_REFERENCE_NODE = 5; 6289 static const int ENTITY_REFERENCE_NODE = 5;
6290 6290
6291 static final int NOTATION_NODE = 12; 6291 static const int NOTATION_NODE = 12;
6292 6292
6293 static final int PROCESSING_INSTRUCTION_NODE = 7; 6293 static const int PROCESSING_INSTRUCTION_NODE = 7;
6294 6294
6295 static final int TEXT_NODE = 3; 6295 static const int TEXT_NODE = 3;
6296 6296
6297 final NamedNodeMap attributes; 6297 final NamedNodeMap attributes;
6298 6298
6299 final String baseURI; 6299 final String baseURI;
6300 6300
6301 final NodeList childNodes; 6301 final NodeList childNodes;
6302 6302
6303 final Node firstChild; 6303 final Node firstChild;
6304 6304
6305 final Node lastChild; 6305 final Node lastChild;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
6367 Node replaceChild(Node newChild, Node oldChild); 6367 Node replaceChild(Node newChild, Node oldChild);
6368 } 6368 }
6369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6369 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6370 // for details. All rights reserved. Use of this source code is governed by a 6370 // for details. All rights reserved. Use of this source code is governed by a
6371 // BSD-style license that can be found in the LICENSE file. 6371 // BSD-style license that can be found in the LICENSE file.
6372 6372
6373 // WARNING: Do not edit - generated code. 6373 // WARNING: Do not edit - generated code.
6374 6374
6375 interface NodeFilter { 6375 interface NodeFilter {
6376 6376
6377 static final int FILTER_ACCEPT = 1; 6377 static const int FILTER_ACCEPT = 1;
6378 6378
6379 static final int FILTER_REJECT = 2; 6379 static const int FILTER_REJECT = 2;
6380 6380
6381 static final int FILTER_SKIP = 3; 6381 static const int FILTER_SKIP = 3;
6382 6382
6383 static final int SHOW_ALL = 0xFFFFFFFF; 6383 static const int SHOW_ALL = 0xFFFFFFFF;
6384 6384
6385 static final int SHOW_ATTRIBUTE = 0x00000002; 6385 static const int SHOW_ATTRIBUTE = 0x00000002;
6386 6386
6387 static final int SHOW_CDATA_SECTION = 0x00000008; 6387 static const int SHOW_CDATA_SECTION = 0x00000008;
6388 6388
6389 static final int SHOW_COMMENT = 0x00000080; 6389 static const int SHOW_COMMENT = 0x00000080;
6390 6390
6391 static final int SHOW_DOCUMENT = 0x00000100; 6391 static const int SHOW_DOCUMENT = 0x00000100;
6392 6392
6393 static final int SHOW_DOCUMENT_FRAGMENT = 0x00000400; 6393 static const int SHOW_DOCUMENT_FRAGMENT = 0x00000400;
6394 6394
6395 static final int SHOW_DOCUMENT_TYPE = 0x00000200; 6395 static const int SHOW_DOCUMENT_TYPE = 0x00000200;
6396 6396
6397 static final int SHOW_ELEMENT = 0x00000001; 6397 static const int SHOW_ELEMENT = 0x00000001;
6398 6398
6399 static final int SHOW_ENTITY = 0x00000020; 6399 static const int SHOW_ENTITY = 0x00000020;
6400 6400
6401 static final int SHOW_ENTITY_REFERENCE = 0x00000010; 6401 static const int SHOW_ENTITY_REFERENCE = 0x00000010;
6402 6402
6403 static final int SHOW_NOTATION = 0x00000800; 6403 static const int SHOW_NOTATION = 0x00000800;
6404 6404
6405 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040; 6405 static const int SHOW_PROCESSING_INSTRUCTION = 0x00000040;
6406 6406
6407 static final int SHOW_TEXT = 0x00000004; 6407 static const int SHOW_TEXT = 0x00000004;
6408 6408
6409 int acceptNode(Node n); 6409 int acceptNode(Node n);
6410 } 6410 }
6411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6411 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6412 // for details. All rights reserved. Use of this source code is governed by a 6412 // for details. All rights reserved. Use of this source code is governed by a
6413 // BSD-style license that can be found in the LICENSE file. 6413 // BSD-style license that can be found in the LICENSE file.
6414 6414
6415 // WARNING: Do not edit - generated code. 6415 // WARNING: Do not edit - generated code.
6416 6416
6417 interface NodeIterator { 6417 interface NodeIterator {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
6512 6512
6513 typedef bool NotificationPermissionCallback(String permission); 6513 typedef bool NotificationPermissionCallback(String permission);
6514 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6514 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6515 // for details. All rights reserved. Use of this source code is governed by a 6515 // for details. All rights reserved. Use of this source code is governed by a
6516 // BSD-style license that can be found in the LICENSE file. 6516 // BSD-style license that can be found in the LICENSE file.
6517 6517
6518 // WARNING: Do not edit - generated code. 6518 // WARNING: Do not edit - generated code.
6519 6519
6520 interface OESStandardDerivatives { 6520 interface OESStandardDerivatives {
6521 6521
6522 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; 6522 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B;
6523 } 6523 }
6524 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6524 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6525 // for details. All rights reserved. Use of this source code is governed by a 6525 // for details. All rights reserved. Use of this source code is governed by a
6526 // BSD-style license that can be found in the LICENSE file. 6526 // BSD-style license that can be found in the LICENSE file.
6527 6527
6528 // WARNING: Do not edit - generated code. 6528 // WARNING: Do not edit - generated code.
6529 6529
6530 interface OESTextureFloat { 6530 interface OESTextureFloat {
6531 } 6531 }
6532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6532 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6533 // for details. All rights reserved. Use of this source code is governed by a 6533 // for details. All rights reserved. Use of this source code is governed by a
6534 // BSD-style license that can be found in the LICENSE file. 6534 // BSD-style license that can be found in the LICENSE file.
6535 6535
6536 // WARNING: Do not edit - generated code. 6536 // WARNING: Do not edit - generated code.
6537 6537
6538 interface OESVertexArrayObject { 6538 interface OESVertexArrayObject {
6539 6539
6540 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; 6540 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5;
6541 6541
6542 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); 6542 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
6543 6543
6544 WebGLVertexArrayObjectOES createVertexArrayOES(); 6544 WebGLVertexArrayObjectOES createVertexArrayOES();
6545 6545
6546 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); 6546 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
6547 6547
6548 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); 6548 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
6549 } 6549 }
6550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6551 // for details. All rights reserved. Use of this source code is governed by a 6551 // for details. All rights reserved. Use of this source code is governed by a
6552 // BSD-style license that can be found in the LICENSE file. 6552 // BSD-style license that can be found in the LICENSE file.
6553 6553
6554 // WARNING: Do not edit - generated code. 6554 // WARNING: Do not edit - generated code.
6555 6555
6556 interface OfflineAudioCompletionEvent extends Event { 6556 interface OfflineAudioCompletionEvent extends Event {
6557 6557
6558 final AudioBuffer renderedBuffer; 6558 final AudioBuffer renderedBuffer;
6559 } 6559 }
6560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6561 // for details. All rights reserved. Use of this source code is governed by a 6561 // for details. All rights reserved. Use of this source code is governed by a
6562 // BSD-style license that can be found in the LICENSE file. 6562 // BSD-style license that can be found in the LICENSE file.
6563 6563
6564 // WARNING: Do not edit - generated code. 6564 // WARNING: Do not edit - generated code.
6565 6565
6566 interface Oscillator extends AudioSourceNode { 6566 interface Oscillator extends AudioSourceNode {
6567 6567
6568 static final int CUSTOM = 4; 6568 static const int CUSTOM = 4;
6569 6569
6570 static final int FINISHED_STATE = 3; 6570 static const int FINISHED_STATE = 3;
6571 6571
6572 static final int PLAYING_STATE = 2; 6572 static const int PLAYING_STATE = 2;
6573 6573
6574 static final int SAWTOOTH = 2; 6574 static const int SAWTOOTH = 2;
6575 6575
6576 static final int SCHEDULED_STATE = 1; 6576 static const int SCHEDULED_STATE = 1;
6577 6577
6578 static final int SINE = 0; 6578 static const int SINE = 0;
6579 6579
6580 static final int SQUARE = 1; 6580 static const int SQUARE = 1;
6581 6581
6582 static final int TRIANGLE = 3; 6582 static const int TRIANGLE = 3;
6583 6583
6584 static final int UNSCHEDULED_STATE = 0; 6584 static const int UNSCHEDULED_STATE = 0;
6585 6585
6586 final AudioParam detune; 6586 final AudioParam detune;
6587 6587
6588 final AudioParam frequency; 6588 final AudioParam frequency;
6589 6589
6590 final int playbackState; 6590 final int playbackState;
6591 6591
6592 int type; 6592 int type;
6593 6593
6594 void noteOff(num when); 6594 void noteOff(num when);
6595 6595
6596 void noteOn(num when); 6596 void noteOn(num when);
6597 6597
6598 void setWaveTable(WaveTable waveTable); 6598 void setWaveTable(WaveTable waveTable);
6599 } 6599 }
6600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6601 // for details. All rights reserved. Use of this source code is governed by a 6601 // for details. All rights reserved. Use of this source code is governed by a
6602 // BSD-style license that can be found in the LICENSE file. 6602 // BSD-style license that can be found in the LICENSE file.
6603 6603
6604 // WARNING: Do not edit - generated code. 6604 // WARNING: Do not edit - generated code.
6605 6605
6606 interface OverflowEvent extends Event { 6606 interface OverflowEvent extends Event {
6607 6607
6608 static final int BOTH = 2; 6608 static const int BOTH = 2;
6609 6609
6610 static final int HORIZONTAL = 0; 6610 static const int HORIZONTAL = 0;
6611 6611
6612 static final int VERTICAL = 1; 6612 static const int VERTICAL = 1;
6613 6613
6614 final bool horizontalOverflow; 6614 final bool horizontalOverflow;
6615 6615
6616 final int orient; 6616 final int orient;
6617 6617
6618 final bool verticalOverflow; 6618 final bool verticalOverflow;
6619 } 6619 }
6620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6620 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6621 // for details. All rights reserved. Use of this source code is governed by a 6621 // for details. All rights reserved. Use of this source code is governed by a
6622 // BSD-style license that can be found in the LICENSE file. 6622 // BSD-style license that can be found in the LICENSE file.
(...skipping 19 matching lines...) Expand all
6642 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6642 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6643 // for details. All rights reserved. Use of this source code is governed by a 6643 // for details. All rights reserved. Use of this source code is governed by a
6644 // BSD-style license that can be found in the LICENSE file. 6644 // BSD-style license that can be found in the LICENSE file.
6645 6645
6646 // WARNING: Do not edit - generated code. 6646 // WARNING: Do not edit - generated code.
6647 6647
6648 interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP rovider { 6648 interface PeerConnection00 extends EventTarget default _PeerConnection00FactoryP rovider {
6649 6649
6650 PeerConnection00(String serverConfiguration, IceCallback iceCallback); 6650 PeerConnection00(String serverConfiguration, IceCallback iceCallback);
6651 6651
6652 static final int ACTIVE = 2; 6652 static const int ACTIVE = 2;
6653 6653
6654 static final int CLOSED = 3; 6654 static const int CLOSED = 3;
6655 6655
6656 static final int ICE_CHECKING = 0x300; 6656 static const int ICE_CHECKING = 0x300;
6657 6657
6658 static final int ICE_CLOSED = 0x700; 6658 static const int ICE_CLOSED = 0x700;
6659 6659
6660 static final int ICE_COMPLETED = 0x500; 6660 static const int ICE_COMPLETED = 0x500;
6661 6661
6662 static final int ICE_CONNECTED = 0x400; 6662 static const int ICE_CONNECTED = 0x400;
6663 6663
6664 static final int ICE_FAILED = 0x600; 6664 static const int ICE_FAILED = 0x600;
6665 6665
6666 static final int ICE_GATHERING = 0x100; 6666 static const int ICE_GATHERING = 0x100;
6667 6667
6668 static final int ICE_WAITING = 0x200; 6668 static const int ICE_WAITING = 0x200;
6669 6669
6670 static final int NEW = 0; 6670 static const int NEW = 0;
6671 6671
6672 static final int OPENING = 1; 6672 static const int OPENING = 1;
6673 6673
6674 static final int SDP_ANSWER = 0x300; 6674 static const int SDP_ANSWER = 0x300;
6675 6675
6676 static final int SDP_OFFER = 0x100; 6676 static const int SDP_OFFER = 0x100;
6677 6677
6678 static final int SDP_PRANSWER = 0x200; 6678 static const int SDP_PRANSWER = 0x200;
6679 6679
6680 final int iceState; 6680 final int iceState;
6681 6681
6682 final SessionDescription localDescription; 6682 final SessionDescription localDescription;
6683 6683
6684 final MediaStreamList localStreams; 6684 final MediaStreamList localStreams;
6685 6685
6686 final int readyState; 6686 final int readyState;
6687 6687
6688 final SessionDescription remoteDescription; 6688 final SessionDescription remoteDescription;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
6730 num webkitNow(); 6730 num webkitNow();
6731 } 6731 }
6732 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6732 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6733 // for details. All rights reserved. Use of this source code is governed by a 6733 // for details. All rights reserved. Use of this source code is governed by a
6734 // BSD-style license that can be found in the LICENSE file. 6734 // BSD-style license that can be found in the LICENSE file.
6735 6735
6736 // WARNING: Do not edit - generated code. 6736 // WARNING: Do not edit - generated code.
6737 6737
6738 interface PerformanceNavigation { 6738 interface PerformanceNavigation {
6739 6739
6740 static final int TYPE_BACK_FORWARD = 2; 6740 static const int TYPE_BACK_FORWARD = 2;
6741 6741
6742 static final int TYPE_NAVIGATE = 0; 6742 static const int TYPE_NAVIGATE = 0;
6743 6743
6744 static final int TYPE_RELOAD = 1; 6744 static const int TYPE_RELOAD = 1;
6745 6745
6746 static final int TYPE_RESERVED = 255; 6746 static const int TYPE_RESERVED = 255;
6747 6747
6748 final int redirectCount; 6748 final int redirectCount;
6749 6749
6750 final int type; 6750 final int type;
6751 } 6751 }
6752 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6752 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6753 // for details. All rights reserved. Use of this source code is governed by a 6753 // for details. All rights reserved. Use of this source code is governed by a
6754 // BSD-style license that can be found in the LICENSE file. 6754 // BSD-style license that can be found in the LICENSE file.
6755 6755
6756 // WARNING: Do not edit - generated code. 6756 // WARNING: Do not edit - generated code.
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
6817 6817
6818 typedef bool PositionCallback(Geoposition position); 6818 typedef bool PositionCallback(Geoposition position);
6819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6819 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6820 // for details. All rights reserved. Use of this source code is governed by a 6820 // for details. All rights reserved. Use of this source code is governed by a
6821 // BSD-style license that can be found in the LICENSE file. 6821 // BSD-style license that can be found in the LICENSE file.
6822 6822
6823 // WARNING: Do not edit - generated code. 6823 // WARNING: Do not edit - generated code.
6824 6824
6825 interface PositionError { 6825 interface PositionError {
6826 6826
6827 static final int PERMISSION_DENIED = 1; 6827 static const int PERMISSION_DENIED = 1;
6828 6828
6829 static final int POSITION_UNAVAILABLE = 2; 6829 static const int POSITION_UNAVAILABLE = 2;
6830 6830
6831 static final int TIMEOUT = 3; 6831 static const int TIMEOUT = 3;
6832 6832
6833 final int code; 6833 final int code;
6834 6834
6835 final String message; 6835 final String message;
6836 } 6836 }
6837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6837 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6838 // for details. All rights reserved. Use of this source code is governed by a 6838 // for details. All rights reserved. Use of this source code is governed by a
6839 // BSD-style license that can be found in the LICENSE file. 6839 // BSD-style license that can be found in the LICENSE file.
6840 6840
6841 // WARNING: Do not edit - generated code. 6841 // WARNING: Do not edit - generated code.
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
6910 String value; 6910 String value;
6911 } 6911 }
6912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6913 // for details. All rights reserved. Use of this source code is governed by a 6913 // for details. All rights reserved. Use of this source code is governed by a
6914 // BSD-style license that can be found in the LICENSE file. 6914 // BSD-style license that can be found in the LICENSE file.
6915 6915
6916 // WARNING: Do not edit - generated code. 6916 // WARNING: Do not edit - generated code.
6917 6917
6918 interface Range { 6918 interface Range {
6919 6919
6920 static final int END_TO_END = 2; 6920 static const int END_TO_END = 2;
6921 6921
6922 static final int END_TO_START = 3; 6922 static const int END_TO_START = 3;
6923 6923
6924 static final int NODE_AFTER = 1; 6924 static const int NODE_AFTER = 1;
6925 6925
6926 static final int NODE_BEFORE = 0; 6926 static const int NODE_BEFORE = 0;
6927 6927
6928 static final int NODE_BEFORE_AND_AFTER = 2; 6928 static const int NODE_BEFORE_AND_AFTER = 2;
6929 6929
6930 static final int NODE_INSIDE = 3; 6930 static const int NODE_INSIDE = 3;
6931 6931
6932 static final int START_TO_END = 1; 6932 static const int START_TO_END = 1;
6933 6933
6934 static final int START_TO_START = 0; 6934 static const int START_TO_START = 0;
6935 6935
6936 final bool collapsed; 6936 final bool collapsed;
6937 6937
6938 final Node commonAncestorContainer; 6938 final Node commonAncestorContainer;
6939 6939
6940 final Node endContainer; 6940 final Node endContainer;
6941 6941
6942 final int endOffset; 6942 final int endOffset;
6943 6943
6944 final Node startContainer; 6944 final Node startContainer;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
6996 String toString(); 6996 String toString();
6997 } 6997 }
6998 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6998 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6999 // for details. All rights reserved. Use of this source code is governed by a 6999 // for details. All rights reserved. Use of this source code is governed by a
7000 // BSD-style license that can be found in the LICENSE file. 7000 // BSD-style license that can be found in the LICENSE file.
7001 7001
7002 // WARNING: Do not edit - generated code. 7002 // WARNING: Do not edit - generated code.
7003 7003
7004 interface RangeException { 7004 interface RangeException {
7005 7005
7006 static final int BAD_BOUNDARYPOINTS_ERR = 1; 7006 static const int BAD_BOUNDARYPOINTS_ERR = 1;
7007 7007
7008 static final int INVALID_NODE_TYPE_ERR = 2; 7008 static const int INVALID_NODE_TYPE_ERR = 2;
7009 7009
7010 final int code; 7010 final int code;
7011 7011
7012 final String message; 7012 final String message;
7013 7013
7014 final String name; 7014 final String name;
7015 7015
7016 String toString(); 7016 String toString();
7017 } 7017 }
7018 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7018 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
7063 7063
7064 typedef bool RequestAnimationFrameCallback(int time); 7064 typedef bool RequestAnimationFrameCallback(int time);
7065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7065 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7066 // for details. All rights reserved. Use of this source code is governed by a 7066 // for details. All rights reserved. Use of this source code is governed by a
7067 // BSD-style license that can be found in the LICENSE file. 7067 // BSD-style license that can be found in the LICENSE file.
7068 7068
7069 // WARNING: Do not edit - generated code. 7069 // WARNING: Do not edit - generated code.
7070 7070
7071 interface SQLError { 7071 interface SQLError {
7072 7072
7073 static final int CONSTRAINT_ERR = 6; 7073 static const int CONSTRAINT_ERR = 6;
7074 7074
7075 static final int DATABASE_ERR = 1; 7075 static const int DATABASE_ERR = 1;
7076 7076
7077 static final int QUOTA_ERR = 4; 7077 static const int QUOTA_ERR = 4;
7078 7078
7079 static final int SYNTAX_ERR = 5; 7079 static const int SYNTAX_ERR = 5;
7080 7080
7081 static final int TIMEOUT_ERR = 7; 7081 static const int TIMEOUT_ERR = 7;
7082 7082
7083 static final int TOO_LARGE_ERR = 3; 7083 static const int TOO_LARGE_ERR = 3;
7084 7084
7085 static final int UNKNOWN_ERR = 0; 7085 static const int UNKNOWN_ERR = 0;
7086 7086
7087 static final int VERSION_ERR = 2; 7087 static const int VERSION_ERR = 2;
7088 7088
7089 final int code; 7089 final int code;
7090 7090
7091 final String message; 7091 final String message;
7092 } 7092 }
7093 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7093 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7094 // for details. All rights reserved. Use of this source code is governed by a 7094 // for details. All rights reserved. Use of this source code is governed by a
7095 // BSD-style license that can be found in the LICENSE file. 7095 // BSD-style license that can be found in the LICENSE file.
7096 7096
7097 // WARNING: Do not edit - generated code. 7097 // WARNING: Do not edit - generated code.
7098 7098
7099 interface SQLException { 7099 interface SQLException {
7100 7100
7101 static final int CONSTRAINT_ERR = 6; 7101 static const int CONSTRAINT_ERR = 6;
7102 7102
7103 static final int DATABASE_ERR = 1; 7103 static const int DATABASE_ERR = 1;
7104 7104
7105 static final int QUOTA_ERR = 4; 7105 static const int QUOTA_ERR = 4;
7106 7106
7107 static final int SYNTAX_ERR = 5; 7107 static const int SYNTAX_ERR = 5;
7108 7108
7109 static final int TIMEOUT_ERR = 7; 7109 static const int TIMEOUT_ERR = 7;
7110 7110
7111 static final int TOO_LARGE_ERR = 3; 7111 static const int TOO_LARGE_ERR = 3;
7112 7112
7113 static final int UNKNOWN_ERR = 0; 7113 static const int UNKNOWN_ERR = 0;
7114 7114
7115 static final int VERSION_ERR = 2; 7115 static const int VERSION_ERR = 2;
7116 7116
7117 final int code; 7117 final int code;
7118 7118
7119 final String message; 7119 final String message;
7120 } 7120 }
7121 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7121 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7122 // for details. All rights reserved. Use of this source code is governed by a 7122 // for details. All rights reserved. Use of this source code is governed by a
7123 // BSD-style license that can be found in the LICENSE file. 7123 // BSD-style license that can be found in the LICENSE file.
7124 7124
7125 // WARNING: Do not edit - generated code. 7125 // WARNING: Do not edit - generated code.
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
7238 interface SVGAltGlyphItemElement extends SVGElement { 7238 interface SVGAltGlyphItemElement extends SVGElement {
7239 } 7239 }
7240 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7240 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7241 // for details. All rights reserved. Use of this source code is governed by a 7241 // for details. All rights reserved. Use of this source code is governed by a
7242 // BSD-style license that can be found in the LICENSE file. 7242 // BSD-style license that can be found in the LICENSE file.
7243 7243
7244 // WARNING: Do not edit - generated code. 7244 // WARNING: Do not edit - generated code.
7245 7245
7246 interface SVGAngle { 7246 interface SVGAngle {
7247 7247
7248 static final int SVG_ANGLETYPE_DEG = 2; 7248 static const int SVG_ANGLETYPE_DEG = 2;
7249 7249
7250 static final int SVG_ANGLETYPE_GRAD = 4; 7250 static const int SVG_ANGLETYPE_GRAD = 4;
7251 7251
7252 static final int SVG_ANGLETYPE_RAD = 3; 7252 static const int SVG_ANGLETYPE_RAD = 3;
7253 7253
7254 static final int SVG_ANGLETYPE_UNKNOWN = 0; 7254 static const int SVG_ANGLETYPE_UNKNOWN = 0;
7255 7255
7256 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; 7256 static const int SVG_ANGLETYPE_UNSPECIFIED = 1;
7257 7257
7258 final int unitType; 7258 final int unitType;
7259 7259
7260 num value; 7260 num value;
7261 7261
7262 String valueAsString; 7262 String valueAsString;
7263 7263
7264 num valueInSpecifiedUnits; 7264 num valueInSpecifiedUnits;
7265 7265
7266 void convertToSpecifiedUnits(int unitType); 7266 void convertToSpecifiedUnits(int unitType);
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
7484 final SVGAnimatedEnumeration clipPathUnits; 7484 final SVGAnimatedEnumeration clipPathUnits;
7485 } 7485 }
7486 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7486 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7487 // for details. All rights reserved. Use of this source code is governed by a 7487 // for details. All rights reserved. Use of this source code is governed by a
7488 // BSD-style license that can be found in the LICENSE file. 7488 // BSD-style license that can be found in the LICENSE file.
7489 7489
7490 // WARNING: Do not edit - generated code. 7490 // WARNING: Do not edit - generated code.
7491 7491
7492 interface SVGColor extends CSSValue { 7492 interface SVGColor extends CSSValue {
7493 7493
7494 static final int SVG_COLORTYPE_CURRENTCOLOR = 3; 7494 static const int SVG_COLORTYPE_CURRENTCOLOR = 3;
7495 7495
7496 static final int SVG_COLORTYPE_RGBCOLOR = 1; 7496 static const int SVG_COLORTYPE_RGBCOLOR = 1;
7497 7497
7498 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; 7498 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2;
7499 7499
7500 static final int SVG_COLORTYPE_UNKNOWN = 0; 7500 static const int SVG_COLORTYPE_UNKNOWN = 0;
7501 7501
7502 final int colorType; 7502 final int colorType;
7503 7503
7504 final RGBColor rgbColor; 7504 final RGBColor rgbColor;
7505 7505
7506 void setColor(int colorType, String rgbColor, String iccColor); 7506 void setColor(int colorType, String rgbColor, String iccColor);
7507 7507
7508 void setRGBColor(String rgbColor); 7508 void setRGBColor(String rgbColor);
7509 7509
7510 void setRGBColorICCColor(String rgbColor, String iccColor); 7510 void setRGBColorICCColor(String rgbColor, String iccColor);
7511 } 7511 }
7512 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7512 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7513 // for details. All rights reserved. Use of this source code is governed by a 7513 // for details. All rights reserved. Use of this source code is governed by a
7514 // BSD-style license that can be found in the LICENSE file. 7514 // BSD-style license that can be found in the LICENSE file.
7515 7515
7516 // WARNING: Do not edit - generated code. 7516 // WARNING: Do not edit - generated code.
7517 7517
7518 interface SVGComponentTransferFunctionElement extends SVGElement { 7518 interface SVGComponentTransferFunctionElement extends SVGElement {
7519 7519
7520 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; 7520 static const int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3;
7521 7521
7522 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; 7522 static const int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5;
7523 7523
7524 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; 7524 static const int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1;
7525 7525
7526 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; 7526 static const int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4;
7527 7527
7528 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; 7528 static const int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2;
7529 7529
7530 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; 7530 static const int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0;
7531 7531
7532 final SVGAnimatedNumber amplitude; 7532 final SVGAnimatedNumber amplitude;
7533 7533
7534 final SVGAnimatedNumber exponent; 7534 final SVGAnimatedNumber exponent;
7535 7535
7536 final SVGAnimatedNumber intercept; 7536 final SVGAnimatedNumber intercept;
7537 7537
7538 final SVGAnimatedNumber offset; 7538 final SVGAnimatedNumber offset;
7539 7539
7540 final SVGAnimatedNumber slope; 7540 final SVGAnimatedNumber slope;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
7652 final SVGAnimatedLength ry; 7652 final SVGAnimatedLength ry;
7653 } 7653 }
7654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7654 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7655 // for details. All rights reserved. Use of this source code is governed by a 7655 // for details. All rights reserved. Use of this source code is governed by a
7656 // BSD-style license that can be found in the LICENSE file. 7656 // BSD-style license that can be found in the LICENSE file.
7657 7657
7658 // WARNING: Do not edit - generated code. 7658 // WARNING: Do not edit - generated code.
7659 7659
7660 interface SVGException { 7660 interface SVGException {
7661 7661
7662 static final int SVG_INVALID_VALUE_ERR = 1; 7662 static const int SVG_INVALID_VALUE_ERR = 1;
7663 7663
7664 static final int SVG_MATRIX_NOT_INVERTABLE = 2; 7664 static const int SVG_MATRIX_NOT_INVERTABLE = 2;
7665 7665
7666 static final int SVG_WRONG_TYPE_ERR = 0; 7666 static const int SVG_WRONG_TYPE_ERR = 0;
7667 7667
7668 final int code; 7668 final int code;
7669 7669
7670 final String message; 7670 final String message;
7671 7671
7672 final String name; 7672 final String name;
7673 7673
7674 String toString(); 7674 String toString();
7675 } 7675 }
7676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7676 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7677 // for details. All rights reserved. Use of this source code is governed by a 7677 // for details. All rights reserved. Use of this source code is governed by a
7678 // BSD-style license that can be found in the LICENSE file. 7678 // BSD-style license that can be found in the LICENSE file.
7679 7679
7680 // WARNING: Do not edit - generated code. 7680 // WARNING: Do not edit - generated code.
7681 7681
7682 interface SVGExternalResourcesRequired { 7682 interface SVGExternalResourcesRequired {
7683 7683
7684 final SVGAnimatedBoolean externalResourcesRequired; 7684 final SVGAnimatedBoolean externalResourcesRequired;
7685 } 7685 }
7686 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7686 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7687 // for details. All rights reserved. Use of this source code is governed by a 7687 // for details. All rights reserved. Use of this source code is governed by a
7688 // BSD-style license that can be found in the LICENSE file. 7688 // BSD-style license that can be found in the LICENSE file.
7689 7689
7690 // WARNING: Do not edit - generated code. 7690 // WARNING: Do not edit - generated code.
7691 7691
7692 interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttrib utes { 7692 interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttrib utes {
7693 7693
7694 static final int SVG_FEBLEND_MODE_DARKEN = 4; 7694 static const int SVG_FEBLEND_MODE_DARKEN = 4;
7695 7695
7696 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; 7696 static const int SVG_FEBLEND_MODE_LIGHTEN = 5;
7697 7697
7698 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; 7698 static const int SVG_FEBLEND_MODE_MULTIPLY = 2;
7699 7699
7700 static final int SVG_FEBLEND_MODE_NORMAL = 1; 7700 static const int SVG_FEBLEND_MODE_NORMAL = 1;
7701 7701
7702 static final int SVG_FEBLEND_MODE_SCREEN = 3; 7702 static const int SVG_FEBLEND_MODE_SCREEN = 3;
7703 7703
7704 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; 7704 static const int SVG_FEBLEND_MODE_UNKNOWN = 0;
7705 7705
7706 final SVGAnimatedString in1; 7706 final SVGAnimatedString in1;
7707 7707
7708 final SVGAnimatedString in2; 7708 final SVGAnimatedString in2;
7709 7709
7710 final SVGAnimatedEnumeration mode; 7710 final SVGAnimatedEnumeration mode;
7711 } 7711 }
7712 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7712 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7713 // for details. All rights reserved. Use of this source code is governed by a 7713 // for details. All rights reserved. Use of this source code is governed by a
7714 // BSD-style license that can be found in the LICENSE file. 7714 // BSD-style license that can be found in the LICENSE file.
7715 7715
7716 // WARNING: Do not edit - generated code. 7716 // WARNING: Do not edit - generated code.
7717 7717
7718 interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard Attributes { 7718 interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandard Attributes {
7719 7719
7720 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; 7720 static const int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3;
7721 7721
7722 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; 7722 static const int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4;
7723 7723
7724 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; 7724 static const int SVG_FECOLORMATRIX_TYPE_MATRIX = 1;
7725 7725
7726 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; 7726 static const int SVG_FECOLORMATRIX_TYPE_SATURATE = 2;
7727 7727
7728 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; 7728 static const int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0;
7729 7729
7730 final SVGAnimatedString in1; 7730 final SVGAnimatedString in1;
7731 7731
7732 final SVGAnimatedEnumeration type; 7732 final SVGAnimatedEnumeration type;
7733 7733
7734 final SVGAnimatedNumberList values; 7734 final SVGAnimatedNumberList values;
7735 } 7735 }
7736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7736 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7737 // for details. All rights reserved. Use of this source code is governed by a 7737 // for details. All rights reserved. Use of this source code is governed by a
7738 // BSD-style license that can be found in the LICENSE file. 7738 // BSD-style license that can be found in the LICENSE file.
7739 7739
7740 // WARNING: Do not edit - generated code. 7740 // WARNING: Do not edit - generated code.
7741 7741
7742 interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveSt andardAttributes { 7742 interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveSt andardAttributes {
7743 7743
7744 final SVGAnimatedString in1; 7744 final SVGAnimatedString in1;
7745 } 7745 }
7746 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7746 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7747 // for details. All rights reserved. Use of this source code is governed by a 7747 // for details. All rights reserved. Use of this source code is governed by a
7748 // BSD-style license that can be found in the LICENSE file. 7748 // BSD-style license that can be found in the LICENSE file.
7749 7749
7750 // WARNING: Do not edit - generated code. 7750 // WARNING: Do not edit - generated code.
7751 7751
7752 interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAt tributes { 7752 interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAt tributes {
7753 7753
7754 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; 7754 static const int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6;
7755 7755
7756 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; 7756 static const int SVG_FECOMPOSITE_OPERATOR_ATOP = 4;
7757 7757
7758 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; 7758 static const int SVG_FECOMPOSITE_OPERATOR_IN = 2;
7759 7759
7760 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; 7760 static const int SVG_FECOMPOSITE_OPERATOR_OUT = 3;
7761 7761
7762 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; 7762 static const int SVG_FECOMPOSITE_OPERATOR_OVER = 1;
7763 7763
7764 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; 7764 static const int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0;
7765 7765
7766 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; 7766 static const int SVG_FECOMPOSITE_OPERATOR_XOR = 5;
7767 7767
7768 final SVGAnimatedString in1; 7768 final SVGAnimatedString in1;
7769 7769
7770 final SVGAnimatedString in2; 7770 final SVGAnimatedString in2;
7771 7771
7772 final SVGAnimatedNumber k1; 7772 final SVGAnimatedNumber k1;
7773 7773
7774 final SVGAnimatedNumber k2; 7774 final SVGAnimatedNumber k2;
7775 7775
7776 final SVGAnimatedNumber k3; 7776 final SVGAnimatedNumber k3;
7777 7777
7778 final SVGAnimatedNumber k4; 7778 final SVGAnimatedNumber k4;
7779 7779
7780 final SVGAnimatedEnumeration operator; 7780 final SVGAnimatedEnumeration operator;
7781 } 7781 }
7782 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7782 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7783 // for details. All rights reserved. Use of this source code is governed by a 7783 // for details. All rights reserved. Use of this source code is governed by a
7784 // BSD-style license that can be found in the LICENSE file. 7784 // BSD-style license that can be found in the LICENSE file.
7785 7785
7786 // WARNING: Do not edit - generated code. 7786 // WARNING: Do not edit - generated code.
7787 7787
7788 interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand ardAttributes { 7788 interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand ardAttributes {
7789 7789
7790 static final int SVG_EDGEMODE_DUPLICATE = 1; 7790 static const int SVG_EDGEMODE_DUPLICATE = 1;
7791 7791
7792 static final int SVG_EDGEMODE_NONE = 3; 7792 static const int SVG_EDGEMODE_NONE = 3;
7793 7793
7794 static final int SVG_EDGEMODE_UNKNOWN = 0; 7794 static const int SVG_EDGEMODE_UNKNOWN = 0;
7795 7795
7796 static final int SVG_EDGEMODE_WRAP = 2; 7796 static const int SVG_EDGEMODE_WRAP = 2;
7797 7797
7798 final SVGAnimatedNumber bias; 7798 final SVGAnimatedNumber bias;
7799 7799
7800 final SVGAnimatedNumber divisor; 7800 final SVGAnimatedNumber divisor;
7801 7801
7802 final SVGAnimatedEnumeration edgeMode; 7802 final SVGAnimatedEnumeration edgeMode;
7803 7803
7804 final SVGAnimatedString in1; 7804 final SVGAnimatedString in1;
7805 7805
7806 final SVGAnimatedNumberList kernelMatrix; 7806 final SVGAnimatedNumberList kernelMatrix;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
7838 final SVGAnimatedNumber surfaceScale; 7838 final SVGAnimatedNumber surfaceScale;
7839 } 7839 }
7840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7840 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7841 // for details. All rights reserved. Use of this source code is governed by a 7841 // for details. All rights reserved. Use of this source code is governed by a
7842 // BSD-style license that can be found in the LICENSE file. 7842 // BSD-style license that can be found in the LICENSE file.
7843 7843
7844 // WARNING: Do not edit - generated code. 7844 // WARNING: Do not edit - generated code.
7845 7845
7846 interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan dardAttributes { 7846 interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan dardAttributes {
7847 7847
7848 static final int SVG_CHANNEL_A = 4; 7848 static const int SVG_CHANNEL_A = 4;
7849 7849
7850 static final int SVG_CHANNEL_B = 3; 7850 static const int SVG_CHANNEL_B = 3;
7851 7851
7852 static final int SVG_CHANNEL_G = 2; 7852 static const int SVG_CHANNEL_G = 2;
7853 7853
7854 static final int SVG_CHANNEL_R = 1; 7854 static const int SVG_CHANNEL_R = 1;
7855 7855
7856 static final int SVG_CHANNEL_UNKNOWN = 0; 7856 static const int SVG_CHANNEL_UNKNOWN = 0;
7857 7857
7858 final SVGAnimatedString in1; 7858 final SVGAnimatedString in1;
7859 7859
7860 final SVGAnimatedString in2; 7860 final SVGAnimatedString in2;
7861 7861
7862 final SVGAnimatedNumber scale; 7862 final SVGAnimatedNumber scale;
7863 7863
7864 final SVGAnimatedEnumeration xChannelSelector; 7864 final SVGAnimatedEnumeration xChannelSelector;
7865 7865
7866 final SVGAnimatedEnumeration yChannelSelector; 7866 final SVGAnimatedEnumeration yChannelSelector;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
7982 final SVGAnimatedString in1; 7982 final SVGAnimatedString in1;
7983 } 7983 }
7984 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7984 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7985 // for details. All rights reserved. Use of this source code is governed by a 7985 // for details. All rights reserved. Use of this source code is governed by a
7986 // BSD-style license that can be found in the LICENSE file. 7986 // BSD-style license that can be found in the LICENSE file.
7987 7987
7988 // WARNING: Do not edit - generated code. 7988 // WARNING: Do not edit - generated code.
7989 7989
7990 interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA ttributes { 7990 interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA ttributes {
7991 7991
7992 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; 7992 static const int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
7993 7993
7994 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; 7994 static const int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
7995 7995
7996 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; 7996 static const int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
7997 7997
7998 final SVGAnimatedString in1; 7998 final SVGAnimatedString in1;
7999 7999
8000 final SVGAnimatedEnumeration operator; 8000 final SVGAnimatedEnumeration operator;
8001 8001
8002 final SVGAnimatedNumber radiusX; 8002 final SVGAnimatedNumber radiusX;
8003 8003
8004 final SVGAnimatedNumber radiusY; 8004 final SVGAnimatedNumber radiusY;
8005 8005
8006 void setRadius(num radiusX, num radiusY); 8006 void setRadius(num radiusX, num radiusY);
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
8084 final SVGAnimatedString in1; 8084 final SVGAnimatedString in1;
8085 } 8085 }
8086 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8086 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8087 // for details. All rights reserved. Use of this source code is governed by a 8087 // for details. All rights reserved. Use of this source code is governed by a
8088 // BSD-style license that can be found in the LICENSE file. 8088 // BSD-style license that can be found in the LICENSE file.
8089 8089
8090 // WARNING: Do not edit - generated code. 8090 // WARNING: Do not edit - generated code.
8091 8091
8092 interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA ttributes { 8092 interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardA ttributes {
8093 8093
8094 static final int SVG_STITCHTYPE_NOSTITCH = 2; 8094 static const int SVG_STITCHTYPE_NOSTITCH = 2;
8095 8095
8096 static final int SVG_STITCHTYPE_STITCH = 1; 8096 static const int SVG_STITCHTYPE_STITCH = 1;
8097 8097
8098 static final int SVG_STITCHTYPE_UNKNOWN = 0; 8098 static const int SVG_STITCHTYPE_UNKNOWN = 0;
8099 8099
8100 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; 8100 static const int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1;
8101 8101
8102 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; 8102 static const int SVG_TURBULENCE_TYPE_TURBULENCE = 2;
8103 8103
8104 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; 8104 static const int SVG_TURBULENCE_TYPE_UNKNOWN = 0;
8105 8105
8106 final SVGAnimatedNumber baseFrequencyX; 8106 final SVGAnimatedNumber baseFrequencyX;
8107 8107
8108 final SVGAnimatedNumber baseFrequencyY; 8108 final SVGAnimatedNumber baseFrequencyY;
8109 8109
8110 final SVGAnimatedInteger numOctaves; 8110 final SVGAnimatedInteger numOctaves;
8111 8111
8112 final SVGAnimatedNumber seed; 8112 final SVGAnimatedNumber seed;
8113 8113
8114 final SVGAnimatedEnumeration stitchTiles; 8114 final SVGAnimatedEnumeration stitchTiles;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
8272 num y; 8272 num y;
8273 } 8273 }
8274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8274 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8275 // for details. All rights reserved. Use of this source code is governed by a 8275 // for details. All rights reserved. Use of this source code is governed by a
8276 // BSD-style license that can be found in the LICENSE file. 8276 // BSD-style license that can be found in the LICENSE file.
8277 8277
8278 // WARNING: Do not edit - generated code. 8278 // WARNING: Do not edit - generated code.
8279 8279
8280 interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalRes ourcesRequired, SVGStylable { 8280 interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalRes ourcesRequired, SVGStylable {
8281 8281
8282 static final int SVG_SPREADMETHOD_PAD = 1; 8282 static const int SVG_SPREADMETHOD_PAD = 1;
8283 8283
8284 static final int SVG_SPREADMETHOD_REFLECT = 2; 8284 static const int SVG_SPREADMETHOD_REFLECT = 2;
8285 8285
8286 static final int SVG_SPREADMETHOD_REPEAT = 3; 8286 static const int SVG_SPREADMETHOD_REPEAT = 3;
8287 8287
8288 static final int SVG_SPREADMETHOD_UNKNOWN = 0; 8288 static const int SVG_SPREADMETHOD_UNKNOWN = 0;
8289 8289
8290 final SVGAnimatedTransformList gradientTransform; 8290 final SVGAnimatedTransformList gradientTransform;
8291 8291
8292 final SVGAnimatedEnumeration gradientUnits; 8292 final SVGAnimatedEnumeration gradientUnits;
8293 8293
8294 final SVGAnimatedEnumeration spreadMethod; 8294 final SVGAnimatedEnumeration spreadMethod;
8295 } 8295 }
8296 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8296 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8297 // for details. All rights reserved. Use of this source code is governed by a 8297 // for details. All rights reserved. Use of this source code is governed by a
8298 // BSD-style license that can be found in the LICENSE file. 8298 // BSD-style license that can be found in the LICENSE file.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
8332 String xmlspace; 8332 String xmlspace;
8333 } 8333 }
8334 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8334 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8335 // for details. All rights reserved. Use of this source code is governed by a 8335 // for details. All rights reserved. Use of this source code is governed by a
8336 // BSD-style license that can be found in the LICENSE file. 8336 // BSD-style license that can be found in the LICENSE file.
8337 8337
8338 // WARNING: Do not edit - generated code. 8338 // WARNING: Do not edit - generated code.
8339 8339
8340 interface SVGLength { 8340 interface SVGLength {
8341 8341
8342 static final int SVG_LENGTHTYPE_CM = 6; 8342 static const int SVG_LENGTHTYPE_CM = 6;
8343 8343
8344 static final int SVG_LENGTHTYPE_EMS = 3; 8344 static const int SVG_LENGTHTYPE_EMS = 3;
8345 8345
8346 static final int SVG_LENGTHTYPE_EXS = 4; 8346 static const int SVG_LENGTHTYPE_EXS = 4;
8347 8347
8348 static final int SVG_LENGTHTYPE_IN = 8; 8348 static const int SVG_LENGTHTYPE_IN = 8;
8349 8349
8350 static final int SVG_LENGTHTYPE_MM = 7; 8350 static const int SVG_LENGTHTYPE_MM = 7;
8351 8351
8352 static final int SVG_LENGTHTYPE_NUMBER = 1; 8352 static const int SVG_LENGTHTYPE_NUMBER = 1;
8353 8353
8354 static final int SVG_LENGTHTYPE_PC = 10; 8354 static const int SVG_LENGTHTYPE_PC = 10;
8355 8355
8356 static final int SVG_LENGTHTYPE_PERCENTAGE = 2; 8356 static const int SVG_LENGTHTYPE_PERCENTAGE = 2;
8357 8357
8358 static final int SVG_LENGTHTYPE_PT = 9; 8358 static const int SVG_LENGTHTYPE_PT = 9;
8359 8359
8360 static final int SVG_LENGTHTYPE_PX = 5; 8360 static const int SVG_LENGTHTYPE_PX = 5;
8361 8361
8362 static final int SVG_LENGTHTYPE_UNKNOWN = 0; 8362 static const int SVG_LENGTHTYPE_UNKNOWN = 0;
8363 8363
8364 final int unitType; 8364 final int unitType;
8365 8365
8366 num value; 8366 num value;
8367 8367
8368 String valueAsString; 8368 String valueAsString;
8369 8369
8370 num valueInSpecifiedUnits; 8370 num valueInSpecifiedUnits;
8371 8371
8372 void convertToSpecifiedUnits(int unitType); 8372 void convertToSpecifiedUnits(int unitType);
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
8458 interface SVGMPathElement extends SVGElement, SVGURIReference, SVGExternalResour cesRequired { 8458 interface SVGMPathElement extends SVGElement, SVGURIReference, SVGExternalResour cesRequired {
8459 } 8459 }
8460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8460 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8461 // for details. All rights reserved. Use of this source code is governed by a 8461 // for details. All rights reserved. Use of this source code is governed by a
8462 // BSD-style license that can be found in the LICENSE file. 8462 // BSD-style license that can be found in the LICENSE file.
8463 8463
8464 // WARNING: Do not edit - generated code. 8464 // WARNING: Do not edit - generated code.
8465 8465
8466 interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource sRequired, SVGStylable, SVGFitToViewBox { 8466 interface SVGMarkerElement extends SVGElement, SVGLangSpace, SVGExternalResource sRequired, SVGStylable, SVGFitToViewBox {
8467 8467
8468 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; 8468 static const int SVG_MARKERUNITS_STROKEWIDTH = 2;
8469 8469
8470 static final int SVG_MARKERUNITS_UNKNOWN = 0; 8470 static const int SVG_MARKERUNITS_UNKNOWN = 0;
8471 8471
8472 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; 8472 static const int SVG_MARKERUNITS_USERSPACEONUSE = 1;
8473 8473
8474 static final int SVG_MARKER_ORIENT_ANGLE = 2; 8474 static const int SVG_MARKER_ORIENT_ANGLE = 2;
8475 8475
8476 static final int SVG_MARKER_ORIENT_AUTO = 1; 8476 static const int SVG_MARKER_ORIENT_AUTO = 1;
8477 8477
8478 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; 8478 static const int SVG_MARKER_ORIENT_UNKNOWN = 0;
8479 8479
8480 final SVGAnimatedLength markerHeight; 8480 final SVGAnimatedLength markerHeight;
8481 8481
8482 final SVGAnimatedEnumeration markerUnits; 8482 final SVGAnimatedEnumeration markerUnits;
8483 8483
8484 final SVGAnimatedLength markerWidth; 8484 final SVGAnimatedLength markerWidth;
8485 8485
8486 final SVGAnimatedAngle orientAngle; 8486 final SVGAnimatedAngle orientAngle;
8487 8487
8488 final SVGAnimatedEnumeration orientType; 8488 final SVGAnimatedEnumeration orientType;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
8608 SVGNumber replaceItem(SVGNumber item, int index); 8608 SVGNumber replaceItem(SVGNumber item, int index);
8609 } 8609 }
8610 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8610 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8611 // for details. All rights reserved. Use of this source code is governed by a 8611 // for details. All rights reserved. Use of this source code is governed by a
8612 // BSD-style license that can be found in the LICENSE file. 8612 // BSD-style license that can be found in the LICENSE file.
8613 8613
8614 // WARNING: Do not edit - generated code. 8614 // WARNING: Do not edit - generated code.
8615 8615
8616 interface SVGPaint extends SVGColor { 8616 interface SVGPaint extends SVGColor {
8617 8617
8618 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; 8618 static const int SVG_PAINTTYPE_CURRENTCOLOR = 102;
8619 8619
8620 static final int SVG_PAINTTYPE_NONE = 101; 8620 static const int SVG_PAINTTYPE_NONE = 101;
8621 8621
8622 static final int SVG_PAINTTYPE_RGBCOLOR = 1; 8622 static const int SVG_PAINTTYPE_RGBCOLOR = 1;
8623 8623
8624 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; 8624 static const int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2;
8625 8625
8626 static final int SVG_PAINTTYPE_UNKNOWN = 0; 8626 static const int SVG_PAINTTYPE_UNKNOWN = 0;
8627 8627
8628 static final int SVG_PAINTTYPE_URI = 107; 8628 static const int SVG_PAINTTYPE_URI = 107;
8629 8629
8630 static final int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; 8630 static const int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104;
8631 8631
8632 static final int SVG_PAINTTYPE_URI_NONE = 103; 8632 static const int SVG_PAINTTYPE_URI_NONE = 103;
8633 8633
8634 static final int SVG_PAINTTYPE_URI_RGBCOLOR = 105; 8634 static const int SVG_PAINTTYPE_URI_RGBCOLOR = 105;
8635 8635
8636 static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; 8636 static const int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106;
8637 8637
8638 final int paintType; 8638 final int paintType;
8639 8639
8640 final String uri; 8640 final String uri;
8641 8641
8642 void setPaint(int paintType, String uri, String rgbColor, String iccColor); 8642 void setPaint(int paintType, String uri, String rgbColor, String iccColor);
8643 8643
8644 void setUri(String uri); 8644 void setUri(String uri);
8645 } 8645 }
8646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
8706 num getTotalLength(); 8706 num getTotalLength();
8707 } 8707 }
8708 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8708 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8709 // for details. All rights reserved. Use of this source code is governed by a 8709 // for details. All rights reserved. Use of this source code is governed by a
8710 // BSD-style license that can be found in the LICENSE file. 8710 // BSD-style license that can be found in the LICENSE file.
8711 8711
8712 // WARNING: Do not edit - generated code. 8712 // WARNING: Do not edit - generated code.
8713 8713
8714 interface SVGPathSeg { 8714 interface SVGPathSeg {
8715 8715
8716 static final int PATHSEG_ARC_ABS = 10; 8716 static const int PATHSEG_ARC_ABS = 10;
8717 8717
8718 static final int PATHSEG_ARC_REL = 11; 8718 static const int PATHSEG_ARC_REL = 11;
8719 8719
8720 static final int PATHSEG_CLOSEPATH = 1; 8720 static const int PATHSEG_CLOSEPATH = 1;
8721 8721
8722 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; 8722 static const int PATHSEG_CURVETO_CUBIC_ABS = 6;
8723 8723
8724 static final int PATHSEG_CURVETO_CUBIC_REL = 7; 8724 static const int PATHSEG_CURVETO_CUBIC_REL = 7;
8725 8725
8726 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; 8726 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
8727 8727
8728 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; 8728 static const int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
8729 8729
8730 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8; 8730 static const int PATHSEG_CURVETO_QUADRATIC_ABS = 8;
8731 8731
8732 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9; 8732 static const int PATHSEG_CURVETO_QUADRATIC_REL = 9;
8733 8733
8734 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; 8734 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
8735 8735
8736 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; 8736 static const int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
8737 8737
8738 static final int PATHSEG_LINETO_ABS = 4; 8738 static const int PATHSEG_LINETO_ABS = 4;
8739 8739
8740 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12; 8740 static const int PATHSEG_LINETO_HORIZONTAL_ABS = 12;
8741 8741
8742 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13; 8742 static const int PATHSEG_LINETO_HORIZONTAL_REL = 13;
8743 8743
8744 static final int PATHSEG_LINETO_REL = 5; 8744 static const int PATHSEG_LINETO_REL = 5;
8745 8745
8746 static final int PATHSEG_LINETO_VERTICAL_ABS = 14; 8746 static const int PATHSEG_LINETO_VERTICAL_ABS = 14;
8747 8747
8748 static final int PATHSEG_LINETO_VERTICAL_REL = 15; 8748 static const int PATHSEG_LINETO_VERTICAL_REL = 15;
8749 8749
8750 static final int PATHSEG_MOVETO_ABS = 2; 8750 static const int PATHSEG_MOVETO_ABS = 2;
8751 8751
8752 static final int PATHSEG_MOVETO_REL = 3; 8752 static const int PATHSEG_MOVETO_REL = 3;
8753 8753
8754 static final int PATHSEG_UNKNOWN = 0; 8754 static const int PATHSEG_UNKNOWN = 0;
8755 8755
8756 final int pathSegType; 8756 final int pathSegType;
8757 8757
8758 final String pathSegTypeAsLetter; 8758 final String pathSegTypeAsLetter;
8759 } 8759 }
8760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8761 // for details. All rights reserved. Use of this source code is governed by a 8761 // for details. All rights reserved. Use of this source code is governed by a
8762 // BSD-style license that can be found in the LICENSE file. 8762 // BSD-style license that can be found in the LICENSE file.
8763 8763
8764 // WARNING: Do not edit - generated code. 8764 // WARNING: Do not edit - generated code.
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
9134 final SVGPointList points; 9134 final SVGPointList points;
9135 } 9135 }
9136 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9136 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9137 // for details. All rights reserved. Use of this source code is governed by a 9137 // for details. All rights reserved. Use of this source code is governed by a
9138 // BSD-style license that can be found in the LICENSE file. 9138 // BSD-style license that can be found in the LICENSE file.
9139 9139
9140 // WARNING: Do not edit - generated code. 9140 // WARNING: Do not edit - generated code.
9141 9141
9142 interface SVGPreserveAspectRatio { 9142 interface SVGPreserveAspectRatio {
9143 9143
9144 static final int SVG_MEETORSLICE_MEET = 1; 9144 static const int SVG_MEETORSLICE_MEET = 1;
9145 9145
9146 static final int SVG_MEETORSLICE_SLICE = 2; 9146 static const int SVG_MEETORSLICE_SLICE = 2;
9147 9147
9148 static final int SVG_MEETORSLICE_UNKNOWN = 0; 9148 static const int SVG_MEETORSLICE_UNKNOWN = 0;
9149 9149
9150 static final int SVG_PRESERVEASPECTRATIO_NONE = 1; 9150 static const int SVG_PRESERVEASPECTRATIO_NONE = 1;
9151 9151
9152 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; 9152 static const int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0;
9153 9153
9154 static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; 9154 static const int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10;
9155 9155
9156 static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; 9156 static const int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7;
9157 9157
9158 static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; 9158 static const int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4;
9159 9159
9160 static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; 9160 static const int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9;
9161 9161
9162 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; 9162 static const int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
9163 9163
9164 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; 9164 static const int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
9165 9165
9166 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; 9166 static const int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
9167 9167
9168 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 9168 static const int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
9169 9169
9170 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 9170 static const int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
9171 9171
9172 int align; 9172 int align;
9173 9173
9174 int meetOrSlice; 9174 int meetOrSlice;
9175 } 9175 }
9176 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9176 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9177 // for details. All rights reserved. Use of this source code is governed by a 9177 // for details. All rights reserved. Use of this source code is governed by a
9178 // BSD-style license that can be found in the LICENSE file. 9178 // BSD-style license that can be found in the LICENSE file.
9179 9179
9180 // WARNING: Do not edit - generated code. 9180 // WARNING: Do not edit - generated code.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
9228 final SVGAnimatedLength y; 9228 final SVGAnimatedLength y;
9229 } 9229 }
9230 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9230 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9231 // for details. All rights reserved. Use of this source code is governed by a 9231 // for details. All rights reserved. Use of this source code is governed by a
9232 // BSD-style license that can be found in the LICENSE file. 9232 // BSD-style license that can be found in the LICENSE file.
9233 9233
9234 // WARNING: Do not edit - generated code. 9234 // WARNING: Do not edit - generated code.
9235 9235
9236 interface SVGRenderingIntent { 9236 interface SVGRenderingIntent {
9237 9237
9238 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 9238 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
9239 9239
9240 static final int RENDERING_INTENT_AUTO = 1; 9240 static const int RENDERING_INTENT_AUTO = 1;
9241 9241
9242 static final int RENDERING_INTENT_PERCEPTUAL = 2; 9242 static const int RENDERING_INTENT_PERCEPTUAL = 2;
9243 9243
9244 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; 9244 static const int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3;
9245 9245
9246 static final int RENDERING_INTENT_SATURATION = 4; 9246 static const int RENDERING_INTENT_SATURATION = 4;
9247 9247
9248 static final int RENDERING_INTENT_UNKNOWN = 0; 9248 static const int RENDERING_INTENT_UNKNOWN = 0;
9249 } 9249 }
9250 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9250 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9251 // for details. All rights reserved. Use of this source code is governed by a 9251 // for details. All rights reserved. Use of this source code is governed by a
9252 // BSD-style license that can be found in the LICENSE file. 9252 // BSD-style license that can be found in the LICENSE file.
9253 9253
9254 // WARNING: Do not edit - generated code. 9254 // WARNING: Do not edit - generated code.
9255 9255
9256 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan { 9256 interface SVGSVGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalR esourcesRequired, SVGStylable, SVGLocatable, SVGFitToViewBox, SVGZoomAndPan {
9257 9257
9258 String contentScriptType; 9258 String contentScriptType;
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
9462 bool hasExtension(String extension); 9462 bool hasExtension(String extension);
9463 } 9463 }
9464 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9464 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9465 // for details. All rights reserved. Use of this source code is governed by a 9465 // for details. All rights reserved. Use of this source code is governed by a
9466 // BSD-style license that can be found in the LICENSE file. 9466 // BSD-style license that can be found in the LICENSE file.
9467 9467
9468 // WARNING: Do not edit - generated code. 9468 // WARNING: Do not edit - generated code.
9469 9469
9470 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE xternalResourcesRequired, SVGStylable { 9470 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE xternalResourcesRequired, SVGStylable {
9471 9471
9472 static final int LENGTHADJUST_SPACING = 1; 9472 static const int LENGTHADJUST_SPACING = 1;
9473 9473
9474 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; 9474 static const int LENGTHADJUST_SPACINGANDGLYPHS = 2;
9475 9475
9476 static final int LENGTHADJUST_UNKNOWN = 0; 9476 static const int LENGTHADJUST_UNKNOWN = 0;
9477 9477
9478 final SVGAnimatedEnumeration lengthAdjust; 9478 final SVGAnimatedEnumeration lengthAdjust;
9479 9479
9480 final SVGAnimatedLength textLength; 9480 final SVGAnimatedLength textLength;
9481 9481
9482 int getCharNumAtPosition(SVGPoint point); 9482 int getCharNumAtPosition(SVGPoint point);
9483 9483
9484 num getComputedTextLength(); 9484 num getComputedTextLength();
9485 9485
9486 SVGPoint getEndPositionOfChar(int offset); 9486 SVGPoint getEndPositionOfChar(int offset);
(...skipping 19 matching lines...) Expand all
9506 interface SVGTextElement extends SVGTextPositioningElement, SVGTransformable { 9506 interface SVGTextElement extends SVGTextPositioningElement, SVGTransformable {
9507 } 9507 }
9508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9508 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9509 // for details. All rights reserved. Use of this source code is governed by a 9509 // for details. All rights reserved. Use of this source code is governed by a
9510 // BSD-style license that can be found in the LICENSE file. 9510 // BSD-style license that can be found in the LICENSE file.
9511 9511
9512 // WARNING: Do not edit - generated code. 9512 // WARNING: Do not edit - generated code.
9513 9513
9514 interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference { 9514 interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
9515 9515
9516 static final int TEXTPATH_METHODTYPE_ALIGN = 1; 9516 static const int TEXTPATH_METHODTYPE_ALIGN = 1;
9517 9517
9518 static final int TEXTPATH_METHODTYPE_STRETCH = 2; 9518 static const int TEXTPATH_METHODTYPE_STRETCH = 2;
9519 9519
9520 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; 9520 static const int TEXTPATH_METHODTYPE_UNKNOWN = 0;
9521 9521
9522 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; 9522 static const int TEXTPATH_SPACINGTYPE_AUTO = 1;
9523 9523
9524 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; 9524 static const int TEXTPATH_SPACINGTYPE_EXACT = 2;
9525 9525
9526 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 9526 static const int TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
9527 9527
9528 final SVGAnimatedEnumeration method; 9528 final SVGAnimatedEnumeration method;
9529 9529
9530 final SVGAnimatedEnumeration spacing; 9530 final SVGAnimatedEnumeration spacing;
9531 9531
9532 final SVGAnimatedLength startOffset; 9532 final SVGAnimatedLength startOffset;
9533 } 9533 }
9534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9535 // for details. All rights reserved. Use of this source code is governed by a 9535 // for details. All rights reserved. Use of this source code is governed by a
9536 // BSD-style license that can be found in the LICENSE file. 9536 // BSD-style license that can be found in the LICENSE file.
(...skipping 21 matching lines...) Expand all
9558 interface SVGTitleElement extends SVGElement, SVGLangSpace, SVGStylable { 9558 interface SVGTitleElement extends SVGElement, SVGLangSpace, SVGStylable {
9559 } 9559 }
9560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9560 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9561 // for details. All rights reserved. Use of this source code is governed by a 9561 // for details. All rights reserved. Use of this source code is governed by a
9562 // BSD-style license that can be found in the LICENSE file. 9562 // BSD-style license that can be found in the LICENSE file.
9563 9563
9564 // WARNING: Do not edit - generated code. 9564 // WARNING: Do not edit - generated code.
9565 9565
9566 interface SVGTransform { 9566 interface SVGTransform {
9567 9567
9568 static final int SVG_TRANSFORM_MATRIX = 1; 9568 static const int SVG_TRANSFORM_MATRIX = 1;
9569 9569
9570 static final int SVG_TRANSFORM_ROTATE = 4; 9570 static const int SVG_TRANSFORM_ROTATE = 4;
9571 9571
9572 static final int SVG_TRANSFORM_SCALE = 3; 9572 static const int SVG_TRANSFORM_SCALE = 3;
9573 9573
9574 static final int SVG_TRANSFORM_SKEWX = 5; 9574 static const int SVG_TRANSFORM_SKEWX = 5;
9575 9575
9576 static final int SVG_TRANSFORM_SKEWY = 6; 9576 static const int SVG_TRANSFORM_SKEWY = 6;
9577 9577
9578 static final int SVG_TRANSFORM_TRANSLATE = 2; 9578 static const int SVG_TRANSFORM_TRANSLATE = 2;
9579 9579
9580 static final int SVG_TRANSFORM_UNKNOWN = 0; 9580 static const int SVG_TRANSFORM_UNKNOWN = 0;
9581 9581
9582 final num angle; 9582 final num angle;
9583 9583
9584 final SVGMatrix matrix; 9584 final SVGMatrix matrix;
9585 9585
9586 final int type; 9586 final int type;
9587 9587
9588 void setMatrix(SVGMatrix matrix); 9588 void setMatrix(SVGMatrix matrix);
9589 9589
9590 void setRotate(num angle, num cx, num cy); 9590 void setRotate(num angle, num cx, num cy);
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
9646 final SVGAnimatedString href; 9646 final SVGAnimatedString href;
9647 } 9647 }
9648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9649 // for details. All rights reserved. Use of this source code is governed by a 9649 // for details. All rights reserved. Use of this source code is governed by a
9650 // BSD-style license that can be found in the LICENSE file. 9650 // BSD-style license that can be found in the LICENSE file.
9651 9651
9652 // WARNING: Do not edit - generated code. 9652 // WARNING: Do not edit - generated code.
9653 9653
9654 interface SVGUnitTypes { 9654 interface SVGUnitTypes {
9655 9655
9656 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 9656 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
9657 9657
9658 static final int SVG_UNIT_TYPE_UNKNOWN = 0; 9658 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
9659 9659
9660 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1; 9660 static const int SVG_UNIT_TYPE_USERSPACEONUSE = 1;
9661 } 9661 }
9662 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9662 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9663 // for details. All rights reserved. Use of this source code is governed by a 9663 // for details. All rights reserved. Use of this source code is governed by a
9664 // BSD-style license that can be found in the LICENSE file. 9664 // BSD-style license that can be found in the LICENSE file.
9665 9665
9666 // WARNING: Do not edit - generated code. 9666 // WARNING: Do not edit - generated code.
9667 9667
9668 interface SVGUseElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSp ace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable { 9668 interface SVGUseElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSp ace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable {
9669 9669
9670 final SVGElementInstance animatedInstanceRoot; 9670 final SVGElementInstance animatedInstanceRoot;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
9724 int zoomAndPan; 9724 int zoomAndPan;
9725 } 9725 }
9726 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9726 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9727 // for details. All rights reserved. Use of this source code is governed by a 9727 // for details. All rights reserved. Use of this source code is governed by a
9728 // BSD-style license that can be found in the LICENSE file. 9728 // BSD-style license that can be found in the LICENSE file.
9729 9729
9730 // WARNING: Do not edit - generated code. 9730 // WARNING: Do not edit - generated code.
9731 9731
9732 interface SVGZoomAndPan { 9732 interface SVGZoomAndPan {
9733 9733
9734 static final int SVG_ZOOMANDPAN_DISABLE = 1; 9734 static const int SVG_ZOOMANDPAN_DISABLE = 1;
9735 9735
9736 static final int SVG_ZOOMANDPAN_MAGNIFY = 2; 9736 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
9737 9737
9738 static final int SVG_ZOOMANDPAN_UNKNOWN = 0; 9738 static const int SVG_ZOOMANDPAN_UNKNOWN = 0;
9739 9739
9740 int zoomAndPan; 9740 int zoomAndPan;
9741 } 9741 }
9742 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9742 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
9743 // for details. All rights reserved. Use of this source code is governed by a 9743 // for details. All rights reserved. Use of this source code is governed by a
9744 // BSD-style license that can be found in the LICENSE file. 9744 // BSD-style license that can be found in the LICENSE file.
9745 9745
9746 // WARNING: Do not edit - generated code. 9746 // WARNING: Do not edit - generated code.
9747 9747
9748 interface SVGZoomEvent extends UIEvent { 9748 interface SVGZoomEvent extends UIEvent {
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
10031 final String transcript; 10031 final String transcript;
10032 } 10032 }
10033 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10033 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10034 // for details. All rights reserved. Use of this source code is governed by a 10034 // for details. All rights reserved. Use of this source code is governed by a
10035 // BSD-style license that can be found in the LICENSE file. 10035 // BSD-style license that can be found in the LICENSE file.
10036 10036
10037 // WARNING: Do not edit - generated code. 10037 // WARNING: Do not edit - generated code.
10038 10038
10039 interface SpeechRecognitionError extends Event { 10039 interface SpeechRecognitionError extends Event {
10040 10040
10041 static final int ABORTED = 2; 10041 static const int ABORTED = 2;
10042 10042
10043 static final int AUDIO_CAPTURE = 3; 10043 static const int AUDIO_CAPTURE = 3;
10044 10044
10045 static final int BAD_GRAMMAR = 7; 10045 static const int BAD_GRAMMAR = 7;
10046 10046
10047 static final int LANGUAGE_NOT_SUPPORTED = 8; 10047 static const int LANGUAGE_NOT_SUPPORTED = 8;
10048 10048
10049 static final int NETWORK = 4; 10049 static const int NETWORK = 4;
10050 10050
10051 static final int NOT_ALLOWED = 5; 10051 static const int NOT_ALLOWED = 5;
10052 10052
10053 static final int NO_SPEECH = 1; 10053 static const int NO_SPEECH = 1;
10054 10054
10055 static final int OTHER = 0; 10055 static const int OTHER = 0;
10056 10056
10057 static final int SERVICE_NOT_ALLOWED = 6; 10057 static const int SERVICE_NOT_ALLOWED = 6;
10058 10058
10059 final int code; 10059 final int code;
10060 10060
10061 final String message; 10061 final String message;
10062 } 10062 }
10063 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10063 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10064 // for details. All rights reserved. Use of this source code is governed by a 10064 // for details. All rights reserved. Use of this source code is governed by a
10065 // BSD-style license that can be found in the LICENSE file. 10065 // BSD-style license that can be found in the LICENSE file.
10066 10066
10067 // WARNING: Do not edit - generated code. 10067 // WARNING: Do not edit - generated code.
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
10143 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto rageAreaArg); 10143 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto rageAreaArg);
10144 } 10144 }
10145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10145 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10146 // for details. All rights reserved. Use of this source code is governed by a 10146 // for details. All rights reserved. Use of this source code is governed by a
10147 // BSD-style license that can be found in the LICENSE file. 10147 // BSD-style license that can be found in the LICENSE file.
10148 10148
10149 // WARNING: Do not edit - generated code. 10149 // WARNING: Do not edit - generated code.
10150 10150
10151 interface StorageInfo { 10151 interface StorageInfo {
10152 10152
10153 static final int PERSISTENT = 1; 10153 static const int PERSISTENT = 1;
10154 10154
10155 static final int TEMPORARY = 0; 10155 static const int TEMPORARY = 0;
10156 10156
10157 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck, StorageInfoErrorCallback errorCallback]); 10157 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba ck, StorageInfoErrorCallback errorCallback]);
10158 10158
10159 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback, StorageInfoErrorCallback errorCallback]); 10159 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb ack quotaCallback, StorageInfoErrorCallback errorCallback]);
10160 } 10160 }
10161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10161 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10162 // for details. All rights reserved. Use of this source code is governed by a 10162 // for details. All rights reserved. Use of this source code is governed by a
10163 // BSD-style license that can be found in the LICENSE file. 10163 // BSD-style license that can be found in the LICENSE file.
10164 10164
10165 // WARNING: Do not edit - generated code. 10165 // WARNING: Do not edit - generated code.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
10269 final num width; 10269 final num width;
10270 } 10270 }
10271 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10271 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10272 // for details. All rights reserved. Use of this source code is governed by a 10272 // for details. All rights reserved. Use of this source code is governed by a
10273 // BSD-style license that can be found in the LICENSE file. 10273 // BSD-style license that can be found in the LICENSE file.
10274 10274
10275 // WARNING: Do not edit - generated code. 10275 // WARNING: Do not edit - generated code.
10276 10276
10277 interface TextTrack extends EventTarget { 10277 interface TextTrack extends EventTarget {
10278 10278
10279 static final int DISABLED = 0; 10279 static const int DISABLED = 0;
10280 10280
10281 static final int HIDDEN = 1; 10281 static const int HIDDEN = 1;
10282 10282
10283 static final int SHOWING = 2; 10283 static const int SHOWING = 2;
10284 10284
10285 final TextTrackCueList activeCues; 10285 final TextTrackCueList activeCues;
10286 10286
10287 final TextTrackCueList cues; 10287 final TextTrackCueList cues;
10288 10288
10289 final String kind; 10289 final String kind;
10290 10290
10291 final String label; 10291 final String label;
10292 10292
10293 final String language; 10293 final String language;
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
10544 // WARNING: Do not edit - generated code. 10544 // WARNING: Do not edit - generated code.
10545 10545
10546 interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact oryProvider { 10546 interface Uint16Array extends ArrayBufferView, List<int> default _TypedArrayFact oryProvider {
10547 10547
10548 Uint16Array(int length); 10548 Uint16Array(int length);
10549 10549
10550 Uint16Array.fromList(List<int> list); 10550 Uint16Array.fromList(List<int> list);
10551 10551
10552 Uint16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 10552 Uint16Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
10553 10553
10554 static final int BYTES_PER_ELEMENT = 2; 10554 static const int BYTES_PER_ELEMENT = 2;
10555 10555
10556 final int length; 10556 final int length;
10557 10557
10558 void setElements(Object array, [int offset]); 10558 void setElements(Object array, [int offset]);
10559 10559
10560 Uint16Array subarray(int start, [int end]); 10560 Uint16Array subarray(int start, [int end]);
10561 } 10561 }
10562 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10562 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10563 // for details. All rights reserved. Use of this source code is governed by a 10563 // for details. All rights reserved. Use of this source code is governed by a
10564 // BSD-style license that can be found in the LICENSE file. 10564 // BSD-style license that can be found in the LICENSE file.
10565 10565
10566 // WARNING: Do not edit - generated code. 10566 // WARNING: Do not edit - generated code.
10567 10567
10568 interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact oryProvider { 10568 interface Uint32Array extends ArrayBufferView, List<int> default _TypedArrayFact oryProvider {
10569 10569
10570 Uint32Array(int length); 10570 Uint32Array(int length);
10571 10571
10572 Uint32Array.fromList(List<int> list); 10572 Uint32Array.fromList(List<int> list);
10573 10573
10574 Uint32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 10574 Uint32Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
10575 10575
10576 static final int BYTES_PER_ELEMENT = 4; 10576 static const int BYTES_PER_ELEMENT = 4;
10577 10577
10578 final int length; 10578 final int length;
10579 10579
10580 void setElements(Object array, [int offset]); 10580 void setElements(Object array, [int offset]);
10581 10581
10582 Uint32Array subarray(int start, [int end]); 10582 Uint32Array subarray(int start, [int end]);
10583 } 10583 }
10584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10585 // for details. All rights reserved. Use of this source code is governed by a 10585 // for details. All rights reserved. Use of this source code is governed by a
10586 // BSD-style license that can be found in the LICENSE file. 10586 // BSD-style license that can be found in the LICENSE file.
10587 10587
10588 // WARNING: Do not edit - generated code. 10588 // WARNING: Do not edit - generated code.
10589 10589
10590 interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider { 10590 interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto ryProvider {
10591 10591
10592 Uint8Array(int length); 10592 Uint8Array(int length);
10593 10593
10594 Uint8Array.fromList(List<int> list); 10594 Uint8Array.fromList(List<int> list);
10595 10595
10596 Uint8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]); 10596 Uint8Array.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length]);
10597 10597
10598 static final int BYTES_PER_ELEMENT = 1; 10598 static const int BYTES_PER_ELEMENT = 1;
10599 10599
10600 final int length; 10600 final int length;
10601 10601
10602 void setElements(Object array, [int offset]); 10602 void setElements(Object array, [int offset]);
10603 10603
10604 Uint8Array subarray(int start, [int end]); 10604 Uint8Array subarray(int start, [int end]);
10605 } 10605 }
10606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10606 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10607 // for details. All rights reserved. Use of this source code is governed by a 10607 // for details. All rights reserved. Use of this source code is governed by a
10608 // BSD-style license that can be found in the LICENSE file. 10608 // BSD-style license that can be found in the LICENSE file.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
10697 interface WebGLBuffer { 10697 interface WebGLBuffer {
10698 } 10698 }
10699 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10699 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10700 // for details. All rights reserved. Use of this source code is governed by a 10700 // for details. All rights reserved. Use of this source code is governed by a
10701 // BSD-style license that can be found in the LICENSE file. 10701 // BSD-style license that can be found in the LICENSE file.
10702 10702
10703 // WARNING: Do not edit - generated code. 10703 // WARNING: Do not edit - generated code.
10704 10704
10705 interface WebGLCompressedTextureS3TC { 10705 interface WebGLCompressedTextureS3TC {
10706 10706
10707 static final int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; 10707 static const int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1;
10708 10708
10709 static final int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; 10709 static const int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2;
10710 10710
10711 static final int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3; 10711 static const int COMPRESSED_RGBA_S3TC_DXT5_EXT = 0x83F3;
10712 10712
10713 static final int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0; 10713 static const int COMPRESSED_RGB_S3TC_DXT1_EXT = 0x83F0;
10714 } 10714 }
10715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10716 // for details. All rights reserved. Use of this source code is governed by a 10716 // for details. All rights reserved. Use of this source code is governed by a
10717 // BSD-style license that can be found in the LICENSE file. 10717 // BSD-style license that can be found in the LICENSE file.
10718 10718
10719 // WARNING: Do not edit - generated code. 10719 // WARNING: Do not edit - generated code.
10720 10720
10721 interface WebGLContextAttributes { 10721 interface WebGLContextAttributes {
10722 10722
10723 bool alpha; 10723 bool alpha;
(...skipping 19 matching lines...) Expand all
10743 final String statusMessage; 10743 final String statusMessage;
10744 } 10744 }
10745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10745 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10746 // for details. All rights reserved. Use of this source code is governed by a 10746 // for details. All rights reserved. Use of this source code is governed by a
10747 // BSD-style license that can be found in the LICENSE file. 10747 // BSD-style license that can be found in the LICENSE file.
10748 10748
10749 // WARNING: Do not edit - generated code. 10749 // WARNING: Do not edit - generated code.
10750 10750
10751 interface WebGLDebugRendererInfo { 10751 interface WebGLDebugRendererInfo {
10752 10752
10753 static final int UNMASKED_RENDERER_WEBGL = 0x9246; 10753 static const int UNMASKED_RENDERER_WEBGL = 0x9246;
10754 10754
10755 static final int UNMASKED_VENDOR_WEBGL = 0x9245; 10755 static const int UNMASKED_VENDOR_WEBGL = 0x9245;
10756 } 10756 }
10757 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10757 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10758 // for details. All rights reserved. Use of this source code is governed by a 10758 // for details. All rights reserved. Use of this source code is governed by a
10759 // BSD-style license that can be found in the LICENSE file. 10759 // BSD-style license that can be found in the LICENSE file.
10760 10760
10761 // WARNING: Do not edit - generated code. 10761 // WARNING: Do not edit - generated code.
10762 10762
10763 interface WebGLDebugShaders { 10763 interface WebGLDebugShaders {
10764 10764
10765 String getTranslatedShaderSource(WebGLShader shader); 10765 String getTranslatedShaderSource(WebGLShader shader);
10766 } 10766 }
10767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10767 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10768 // for details. All rights reserved. Use of this source code is governed by a 10768 // for details. All rights reserved. Use of this source code is governed by a
10769 // BSD-style license that can be found in the LICENSE file. 10769 // BSD-style license that can be found in the LICENSE file.
10770 10770
10771 // WARNING: Do not edit - generated code. 10771 // WARNING: Do not edit - generated code.
10772 10772
10773 interface WebGLDepthTexture { 10773 interface WebGLDepthTexture {
10774 10774
10775 static final int UNSIGNED_INT_24_8_WEBGL = 0x84FA; 10775 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA;
10776 } 10776 }
10777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10777 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10778 // for details. All rights reserved. Use of this source code is governed by a 10778 // for details. All rights reserved. Use of this source code is governed by a
10779 // BSD-style license that can be found in the LICENSE file. 10779 // BSD-style license that can be found in the LICENSE file.
10780 10780
10781 // WARNING: Do not edit - generated code. 10781 // WARNING: Do not edit - generated code.
10782 10782
10783 interface WebGLFramebuffer { 10783 interface WebGLFramebuffer {
10784 } 10784 }
10785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10785 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 25 matching lines...) Expand all
10811 interface WebGLRenderbuffer { 10811 interface WebGLRenderbuffer {
10812 } 10812 }
10813 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 10813 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10814 // for details. All rights reserved. Use of this source code is governed by a 10814 // for details. All rights reserved. Use of this source code is governed by a
10815 // BSD-style license that can be found in the LICENSE file. 10815 // BSD-style license that can be found in the LICENSE file.
10816 10816
10817 // WARNING: Do not edit - generated code. 10817 // WARNING: Do not edit - generated code.
10818 10818
10819 interface WebGLRenderingContext extends CanvasRenderingContext { 10819 interface WebGLRenderingContext extends CanvasRenderingContext {
10820 10820
10821 static final int ACTIVE_ATTRIBUTES = 0x8B89; 10821 static const int ACTIVE_ATTRIBUTES = 0x8B89;
10822 10822
10823 static final int ACTIVE_TEXTURE = 0x84E0; 10823 static const int ACTIVE_TEXTURE = 0x84E0;
10824 10824
10825 static final int ACTIVE_UNIFORMS = 0x8B86; 10825 static const int ACTIVE_UNIFORMS = 0x8B86;
10826 10826
10827 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; 10827 static const int ALIASED_LINE_WIDTH_RANGE = 0x846E;
10828 10828
10829 static final int ALIASED_POINT_SIZE_RANGE = 0x846D; 10829 static const int ALIASED_POINT_SIZE_RANGE = 0x846D;
10830 10830
10831 static final int ALPHA = 0x1906; 10831 static const int ALPHA = 0x1906;
10832 10832
10833 static final int ALPHA_BITS = 0x0D55; 10833 static const int ALPHA_BITS = 0x0D55;
10834 10834
10835 static final int ALWAYS = 0x0207; 10835 static const int ALWAYS = 0x0207;
10836 10836
10837 static final int ARRAY_BUFFER = 0x8892; 10837 static const int ARRAY_BUFFER = 0x8892;
10838 10838
10839 static final int ARRAY_BUFFER_BINDING = 0x8894; 10839 static const int ARRAY_BUFFER_BINDING = 0x8894;
10840 10840
10841 static final int ATTACHED_SHADERS = 0x8B85; 10841 static const int ATTACHED_SHADERS = 0x8B85;
10842 10842
10843 static final int BACK = 0x0405; 10843 static const int BACK = 0x0405;
10844 10844
10845 static final int BLEND = 0x0BE2; 10845 static const int BLEND = 0x0BE2;
10846 10846
10847 static final int BLEND_COLOR = 0x8005; 10847 static const int BLEND_COLOR = 0x8005;
10848 10848
10849 static final int BLEND_DST_ALPHA = 0x80CA; 10849 static const int BLEND_DST_ALPHA = 0x80CA;
10850 10850
10851 static final int BLEND_DST_RGB = 0x80C8; 10851 static const int BLEND_DST_RGB = 0x80C8;
10852 10852
10853 static final int BLEND_EQUATION = 0x8009; 10853 static const int BLEND_EQUATION = 0x8009;
10854 10854
10855 static final int BLEND_EQUATION_ALPHA = 0x883D; 10855 static const int BLEND_EQUATION_ALPHA = 0x883D;
10856 10856
10857 static final int BLEND_EQUATION_RGB = 0x8009; 10857 static const int BLEND_EQUATION_RGB = 0x8009;
10858 10858
10859 static final int BLEND_SRC_ALPHA = 0x80CB; 10859 static const int BLEND_SRC_ALPHA = 0x80CB;
10860 10860
10861 static final int BLEND_SRC_RGB = 0x80C9; 10861 static const int BLEND_SRC_RGB = 0x80C9;
10862 10862
10863 static final int BLUE_BITS = 0x0D54; 10863 static const int BLUE_BITS = 0x0D54;
10864 10864
10865 static final int BOOL = 0x8B56; 10865 static const int BOOL = 0x8B56;
10866 10866
10867 static final int BOOL_VEC2 = 0x8B57; 10867 static const int BOOL_VEC2 = 0x8B57;
10868 10868
10869 static final int BOOL_VEC3 = 0x8B58; 10869 static const int BOOL_VEC3 = 0x8B58;
10870 10870
10871 static final int BOOL_VEC4 = 0x8B59; 10871 static const int BOOL_VEC4 = 0x8B59;
10872 10872
10873 static final int BROWSER_DEFAULT_WEBGL = 0x9244; 10873 static const int BROWSER_DEFAULT_WEBGL = 0x9244;
10874 10874
10875 static final int BUFFER_SIZE = 0x8764; 10875 static const int BUFFER_SIZE = 0x8764;
10876 10876
10877 static final int BUFFER_USAGE = 0x8765; 10877 static const int BUFFER_USAGE = 0x8765;
10878 10878
10879 static final int BYTE = 0x1400; 10879 static const int BYTE = 0x1400;
10880 10880
10881 static final int CCW = 0x0901; 10881 static const int CCW = 0x0901;
10882 10882
10883 static final int CLAMP_TO_EDGE = 0x812F; 10883 static const int CLAMP_TO_EDGE = 0x812F;
10884 10884
10885 static final int COLOR_ATTACHMENT0 = 0x8CE0; 10885 static const int COLOR_ATTACHMENT0 = 0x8CE0;
10886 10886
10887 static final int COLOR_BUFFER_BIT = 0x00004000; 10887 static const int COLOR_BUFFER_BIT = 0x00004000;
10888 10888
10889 static final int COLOR_CLEAR_VALUE = 0x0C22; 10889 static const int COLOR_CLEAR_VALUE = 0x0C22;
10890 10890
10891 static final int COLOR_WRITEMASK = 0x0C23; 10891 static const int COLOR_WRITEMASK = 0x0C23;
10892 10892
10893 static final int COMPILE_STATUS = 0x8B81; 10893 static const int COMPILE_STATUS = 0x8B81;
10894 10894
10895 static final int COMPRESSED_TEXTURE_FORMATS = 0x86A3; 10895 static const int COMPRESSED_TEXTURE_FORMATS = 0x86A3;
10896 10896
10897 static final int CONSTANT_ALPHA = 0x8003; 10897 static const int CONSTANT_ALPHA = 0x8003;
10898 10898
10899 static final int CONSTANT_COLOR = 0x8001; 10899 static const int CONSTANT_COLOR = 0x8001;
10900 10900
10901 static final int CONTEXT_LOST_WEBGL = 0x9242; 10901 static const int CONTEXT_LOST_WEBGL = 0x9242;
10902 10902
10903 static final int CULL_FACE = 0x0B44; 10903 static const int CULL_FACE = 0x0B44;
10904 10904
10905 static final int CULL_FACE_MODE = 0x0B45; 10905 static const int CULL_FACE_MODE = 0x0B45;
10906 10906
10907 static final int CURRENT_PROGRAM = 0x8B8D; 10907 static const int CURRENT_PROGRAM = 0x8B8D;
10908 10908
10909 static final int CURRENT_VERTEX_ATTRIB = 0x8626; 10909 static const int CURRENT_VERTEX_ATTRIB = 0x8626;
10910 10910
10911 static final int CW = 0x0900; 10911 static const int CW = 0x0900;
10912 10912
10913 static final int DECR = 0x1E03; 10913 static const int DECR = 0x1E03;
10914 10914
10915 static final int DECR_WRAP = 0x8508; 10915 static const int DECR_WRAP = 0x8508;
10916 10916
10917 static final int DELETE_STATUS = 0x8B80; 10917 static const int DELETE_STATUS = 0x8B80;
10918 10918
10919 static final int DEPTH_ATTACHMENT = 0x8D00; 10919 static const int DEPTH_ATTACHMENT = 0x8D00;
10920 10920
10921 static final int DEPTH_BITS = 0x0D56; 10921 static const int DEPTH_BITS = 0x0D56;
10922 10922
10923 static final int DEPTH_BUFFER_BIT = 0x00000100; 10923 static const int DEPTH_BUFFER_BIT = 0x00000100;
10924 10924
10925 static final int DEPTH_CLEAR_VALUE = 0x0B73; 10925 static const int DEPTH_CLEAR_VALUE = 0x0B73;
10926 10926
10927 static final int DEPTH_COMPONENT = 0x1902; 10927 static const int DEPTH_COMPONENT = 0x1902;
10928 10928
10929 static final int DEPTH_COMPONENT16 = 0x81A5; 10929 static const int DEPTH_COMPONENT16 = 0x81A5;
10930 10930
10931 static final int DEPTH_FUNC = 0x0B74; 10931 static const int DEPTH_FUNC = 0x0B74;
10932 10932
10933 static final int DEPTH_RANGE = 0x0B70; 10933 static const int DEPTH_RANGE = 0x0B70;
10934 10934
10935 static final int DEPTH_STENCIL = 0x84F9; 10935 static const int DEPTH_STENCIL = 0x84F9;
10936 10936
10937 static final int DEPTH_STENCIL_ATTACHMENT = 0x821A; 10937 static const int DEPTH_STENCIL_ATTACHMENT = 0x821A;
10938 10938
10939 static final int DEPTH_TEST = 0x0B71; 10939 static const int DEPTH_TEST = 0x0B71;
10940 10940
10941 static final int DEPTH_WRITEMASK = 0x0B72; 10941 static const int DEPTH_WRITEMASK = 0x0B72;
10942 10942
10943 static final int DITHER = 0x0BD0; 10943 static const int DITHER = 0x0BD0;
10944 10944
10945 static final int DONT_CARE = 0x1100; 10945 static const int DONT_CARE = 0x1100;
10946 10946
10947 static final int DST_ALPHA = 0x0304; 10947 static const int DST_ALPHA = 0x0304;
10948 10948
10949 static final int DST_COLOR = 0x0306; 10949 static const int DST_COLOR = 0x0306;
10950 10950
10951 static final int DYNAMIC_DRAW = 0x88E8; 10951 static const int DYNAMIC_DRAW = 0x88E8;
10952 10952
10953 static final int ELEMENT_ARRAY_BUFFER = 0x8893; 10953 static const int ELEMENT_ARRAY_BUFFER = 0x8893;
10954 10954
10955 static final int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; 10955 static const int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895;
10956 10956
10957 static final int EQUAL = 0x0202; 10957 static const int EQUAL = 0x0202;
10958 10958
10959 static final int FASTEST = 0x1101; 10959 static const int FASTEST = 0x1101;
10960 10960
10961 static final int FLOAT = 0x1406; 10961 static const int FLOAT = 0x1406;
10962 10962
10963 static final int FLOAT_MAT2 = 0x8B5A; 10963 static const int FLOAT_MAT2 = 0x8B5A;
10964 10964
10965 static final int FLOAT_MAT3 = 0x8B5B; 10965 static const int FLOAT_MAT3 = 0x8B5B;
10966 10966
10967 static final int FLOAT_MAT4 = 0x8B5C; 10967 static const int FLOAT_MAT4 = 0x8B5C;
10968 10968
10969 static final int FLOAT_VEC2 = 0x8B50; 10969 static const int FLOAT_VEC2 = 0x8B50;
10970 10970
10971 static final int FLOAT_VEC3 = 0x8B51; 10971 static const int FLOAT_VEC3 = 0x8B51;
10972 10972
10973 static final int FLOAT_VEC4 = 0x8B52; 10973 static const int FLOAT_VEC4 = 0x8B52;
10974 10974
10975 static final int FRAGMENT_SHADER = 0x8B30; 10975 static const int FRAGMENT_SHADER = 0x8B30;
10976 10976
10977 static final int FRAMEBUFFER = 0x8D40; 10977 static const int FRAMEBUFFER = 0x8D40;
10978 10978
10979 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; 10979 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1;
10980 10980
10981 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; 10981 static const int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0;
10982 10982
10983 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; 10983 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3;
10984 10984
10985 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; 10985 static const int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2;
10986 10986
10987 static final int FRAMEBUFFER_BINDING = 0x8CA6; 10987 static const int FRAMEBUFFER_BINDING = 0x8CA6;
10988 10988
10989 static final int FRAMEBUFFER_COMPLETE = 0x8CD5; 10989 static const int FRAMEBUFFER_COMPLETE = 0x8CD5;
10990 10990
10991 static final int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; 10991 static const int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6;
10992 10992
10993 static final int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; 10993 static const int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9;
10994 10994
10995 static final int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; 10995 static const int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7;
10996 10996
10997 static final int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; 10997 static const int FRAMEBUFFER_UNSUPPORTED = 0x8CDD;
10998 10998
10999 static final int FRONT = 0x0404; 10999 static const int FRONT = 0x0404;
11000 11000
11001 static final int FRONT_AND_BACK = 0x0408; 11001 static const int FRONT_AND_BACK = 0x0408;
11002 11002
11003 static final int FRONT_FACE = 0x0B46; 11003 static const int FRONT_FACE = 0x0B46;
11004 11004
11005 static final int FUNC_ADD = 0x8006; 11005 static const int FUNC_ADD = 0x8006;
11006 11006
11007 static final int FUNC_REVERSE_SUBTRACT = 0x800B; 11007 static const int FUNC_REVERSE_SUBTRACT = 0x800B;
11008 11008
11009 static final int FUNC_SUBTRACT = 0x800A; 11009 static const int FUNC_SUBTRACT = 0x800A;
11010 11010
11011 static final int GENERATE_MIPMAP_HINT = 0x8192; 11011 static const int GENERATE_MIPMAP_HINT = 0x8192;
11012 11012
11013 static final int GEQUAL = 0x0206; 11013 static const int GEQUAL = 0x0206;
11014 11014
11015 static final int GREATER = 0x0204; 11015 static const int GREATER = 0x0204;
11016 11016
11017 static final int GREEN_BITS = 0x0D53; 11017 static const int GREEN_BITS = 0x0D53;
11018 11018
11019 static final int HIGH_FLOAT = 0x8DF2; 11019 static const int HIGH_FLOAT = 0x8DF2;
11020 11020
11021 static final int HIGH_INT = 0x8DF5; 11021 static const int HIGH_INT = 0x8DF5;
11022 11022
11023 static final int INCR = 0x1E02; 11023 static const int INCR = 0x1E02;
11024 11024
11025 static final int INCR_WRAP = 0x8507; 11025 static const int INCR_WRAP = 0x8507;
11026 11026
11027 static final int INT = 0x1404; 11027 static const int INT = 0x1404;
11028 11028
11029 static final int INT_VEC2 = 0x8B53; 11029 static const int INT_VEC2 = 0x8B53;
11030 11030
11031 static final int INT_VEC3 = 0x8B54; 11031 static const int INT_VEC3 = 0x8B54;
11032 11032
11033 static final int INT_VEC4 = 0x8B55; 11033 static const int INT_VEC4 = 0x8B55;
11034 11034
11035 static final int INVALID_ENUM = 0x0500; 11035 static const int INVALID_ENUM = 0x0500;
11036 11036
11037 static final int INVALID_FRAMEBUFFER_OPERATION = 0x0506; 11037 static const int INVALID_FRAMEBUFFER_OPERATION = 0x0506;
11038 11038
11039 static final int INVALID_OPERATION = 0x0502; 11039 static const int INVALID_OPERATION = 0x0502;
11040 11040
11041 static final int INVALID_VALUE = 0x0501; 11041 static const int INVALID_VALUE = 0x0501;
11042 11042
11043 static final int INVERT = 0x150A; 11043 static const int INVERT = 0x150A;
11044 11044
11045 static final int KEEP = 0x1E00; 11045 static const int KEEP = 0x1E00;
11046 11046
11047 static final int LEQUAL = 0x0203; 11047 static const int LEQUAL = 0x0203;
11048 11048
11049 static final int LESS = 0x0201; 11049 static const int LESS = 0x0201;
11050 11050
11051 static final int LINEAR = 0x2601; 11051 static const int LINEAR = 0x2601;
11052 11052
11053 static final int LINEAR_MIPMAP_LINEAR = 0x2703; 11053 static const int LINEAR_MIPMAP_LINEAR = 0x2703;
11054 11054
11055 static final int LINEAR_MIPMAP_NEAREST = 0x2701; 11055 static const int LINEAR_MIPMAP_NEAREST = 0x2701;
11056 11056
11057 static final int LINES = 0x0001; 11057 static const int LINES = 0x0001;
11058 11058
11059 static final int LINE_LOOP = 0x0002; 11059 static const int LINE_LOOP = 0x0002;
11060 11060
11061 static final int LINE_STRIP = 0x0003; 11061 static const int LINE_STRIP = 0x0003;
11062 11062
11063 static final int LINE_WIDTH = 0x0B21; 11063 static const int LINE_WIDTH = 0x0B21;
11064 11064
11065 static final int LINK_STATUS = 0x8B82; 11065 static const int LINK_STATUS = 0x8B82;
11066 11066
11067 static final int LOW_FLOAT = 0x8DF0; 11067 static const int LOW_FLOAT = 0x8DF0;
11068 11068
11069 static final int LOW_INT = 0x8DF3; 11069 static const int LOW_INT = 0x8DF3;
11070 11070
11071 static final int LUMINANCE = 0x1909; 11071 static const int LUMINANCE = 0x1909;
11072 11072
11073 static final int LUMINANCE_ALPHA = 0x190A; 11073 static const int LUMINANCE_ALPHA = 0x190A;
11074 11074
11075 static final int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; 11075 static const int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D;
11076 11076
11077 static final int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; 11077 static const int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C;
11078 11078
11079 static final int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; 11079 static const int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD;
11080 11080
11081 static final int MAX_RENDERBUFFER_SIZE = 0x84E8; 11081 static const int MAX_RENDERBUFFER_SIZE = 0x84E8;
11082 11082
11083 static final int MAX_TEXTURE_IMAGE_UNITS = 0x8872; 11083 static const int MAX_TEXTURE_IMAGE_UNITS = 0x8872;
11084 11084
11085 static final int MAX_TEXTURE_SIZE = 0x0D33; 11085 static const int MAX_TEXTURE_SIZE = 0x0D33;
11086 11086
11087 static final int MAX_VARYING_VECTORS = 0x8DFC; 11087 static const int MAX_VARYING_VECTORS = 0x8DFC;
11088 11088
11089 static final int MAX_VERTEX_ATTRIBS = 0x8869; 11089 static const int MAX_VERTEX_ATTRIBS = 0x8869;
11090 11090
11091 static final int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; 11091 static const int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C;
11092 11092
11093 static final int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; 11093 static const int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB;
11094 11094
11095 static final int MAX_VIEWPORT_DIMS = 0x0D3A; 11095 static const int MAX_VIEWPORT_DIMS = 0x0D3A;
11096 11096
11097 static final int MEDIUM_FLOAT = 0x8DF1; 11097 static const int MEDIUM_FLOAT = 0x8DF1;
11098 11098
11099 static final int MEDIUM_INT = 0x8DF4; 11099 static const int MEDIUM_INT = 0x8DF4;
11100 11100
11101 static final int MIRRORED_REPEAT = 0x8370; 11101 static const int MIRRORED_REPEAT = 0x8370;
11102 11102
11103 static final int NEAREST = 0x2600; 11103 static const int NEAREST = 0x2600;
11104 11104
11105 static final int NEAREST_MIPMAP_LINEAR = 0x2702; 11105 static const int NEAREST_MIPMAP_LINEAR = 0x2702;
11106 11106
11107 static final int NEAREST_MIPMAP_NEAREST = 0x2700; 11107 static const int NEAREST_MIPMAP_NEAREST = 0x2700;
11108 11108
11109 static final int NEVER = 0x0200; 11109 static const int NEVER = 0x0200;
11110 11110
11111 static final int NICEST = 0x1102; 11111 static const int NICEST = 0x1102;
11112 11112
11113 static final int NONE = 0; 11113 static const int NONE = 0;
11114 11114
11115 static final int NOTEQUAL = 0x0205; 11115 static const int NOTEQUAL = 0x0205;
11116 11116
11117 static final int NO_ERROR = 0; 11117 static const int NO_ERROR = 0;
11118 11118
11119 static final int ONE = 1; 11119 static const int ONE = 1;
11120 11120
11121 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; 11121 static const int ONE_MINUS_CONSTANT_ALPHA = 0x8004;
11122 11122
11123 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; 11123 static const int ONE_MINUS_CONSTANT_COLOR = 0x8002;
11124 11124
11125 static final int ONE_MINUS_DST_ALPHA = 0x0305; 11125 static const int ONE_MINUS_DST_ALPHA = 0x0305;
11126 11126
11127 static final int ONE_MINUS_DST_COLOR = 0x0307; 11127 static const int ONE_MINUS_DST_COLOR = 0x0307;
11128 11128
11129 static final int ONE_MINUS_SRC_ALPHA = 0x0303; 11129 static const int ONE_MINUS_SRC_ALPHA = 0x0303;
11130 11130
11131 static final int ONE_MINUS_SRC_COLOR = 0x0301; 11131 static const int ONE_MINUS_SRC_COLOR = 0x0301;
11132 11132
11133 static final int OUT_OF_MEMORY = 0x0505; 11133 static const int OUT_OF_MEMORY = 0x0505;
11134 11134
11135 static final int PACK_ALIGNMENT = 0x0D05; 11135 static const int PACK_ALIGNMENT = 0x0D05;
11136 11136
11137 static final int POINTS = 0x0000; 11137 static const int POINTS = 0x0000;
11138 11138
11139 static final int POLYGON_OFFSET_FACTOR = 0x8038; 11139 static const int POLYGON_OFFSET_FACTOR = 0x8038;
11140 11140
11141 static final int POLYGON_OFFSET_FILL = 0x8037; 11141 static const int POLYGON_OFFSET_FILL = 0x8037;
11142 11142
11143 static final int POLYGON_OFFSET_UNITS = 0x2A00; 11143 static const int POLYGON_OFFSET_UNITS = 0x2A00;
11144 11144
11145 static final int RED_BITS = 0x0D52; 11145 static const int RED_BITS = 0x0D52;
11146 11146
11147 static final int RENDERBUFFER = 0x8D41; 11147 static const int RENDERBUFFER = 0x8D41;
11148 11148
11149 static final int RENDERBUFFER_ALPHA_SIZE = 0x8D53; 11149 static const int RENDERBUFFER_ALPHA_SIZE = 0x8D53;
11150 11150
11151 static final int RENDERBUFFER_BINDING = 0x8CA7; 11151 static const int RENDERBUFFER_BINDING = 0x8CA7;
11152 11152
11153 static final int RENDERBUFFER_BLUE_SIZE = 0x8D52; 11153 static const int RENDERBUFFER_BLUE_SIZE = 0x8D52;
11154 11154
11155 static final int RENDERBUFFER_DEPTH_SIZE = 0x8D54; 11155 static const int RENDERBUFFER_DEPTH_SIZE = 0x8D54;
11156 11156
11157 static final int RENDERBUFFER_GREEN_SIZE = 0x8D51; 11157 static const int RENDERBUFFER_GREEN_SIZE = 0x8D51;
11158 11158
11159 static final int RENDERBUFFER_HEIGHT = 0x8D43; 11159 static const int RENDERBUFFER_HEIGHT = 0x8D43;
11160 11160
11161 static final int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; 11161 static const int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44;
11162 11162
11163 static final int RENDERBUFFER_RED_SIZE = 0x8D50; 11163 static const int RENDERBUFFER_RED_SIZE = 0x8D50;
11164 11164
11165 static final int RENDERBUFFER_STENCIL_SIZE = 0x8D55; 11165 static const int RENDERBUFFER_STENCIL_SIZE = 0x8D55;
11166 11166
11167 static final int RENDERBUFFER_WIDTH = 0x8D42; 11167 static const int RENDERBUFFER_WIDTH = 0x8D42;
11168 11168
11169 static final int RENDERER = 0x1F01; 11169 static const int RENDERER = 0x1F01;
11170 11170
11171 static final int REPEAT = 0x2901; 11171 static const int REPEAT = 0x2901;
11172 11172
11173 static final int REPLACE = 0x1E01; 11173 static const int REPLACE = 0x1E01;
11174 11174
11175 static final int RGB = 0x1907; 11175 static const int RGB = 0x1907;
11176 11176
11177 static final int RGB565 = 0x8D62; 11177 static const int RGB565 = 0x8D62;
11178 11178
11179 static final int RGB5_A1 = 0x8057; 11179 static const int RGB5_A1 = 0x8057;
11180 11180
11181 static final int RGBA = 0x1908; 11181 static const int RGBA = 0x1908;
11182 11182
11183 static final int RGBA4 = 0x8056; 11183 static const int RGBA4 = 0x8056;
11184 11184
11185 static final int SAMPLER_2D = 0x8B5E; 11185 static const int SAMPLER_2D = 0x8B5E;
11186 11186
11187 static final int SAMPLER_CUBE = 0x8B60; 11187 static const int SAMPLER_CUBE = 0x8B60;
11188 11188
11189 static final int SAMPLES = 0x80A9; 11189 static const int SAMPLES = 0x80A9;
11190 11190
11191 static final int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; 11191 static const int SAMPLE_ALPHA_TO_COVERAGE = 0x809E;
11192 11192
11193 static final int SAMPLE_BUFFERS = 0x80A8; 11193 static const int SAMPLE_BUFFERS = 0x80A8;
11194 11194
11195 static final int SAMPLE_COVERAGE = 0x80A0; 11195 static const int SAMPLE_COVERAGE = 0x80A0;
11196 11196
11197 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; 11197 static const int SAMPLE_COVERAGE_INVERT = 0x80AB;
11198 11198
11199 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; 11199 static const int SAMPLE_COVERAGE_VALUE = 0x80AA;
11200 11200
11201 static final int SCISSOR_BOX = 0x0C10; 11201 static const int SCISSOR_BOX = 0x0C10;
11202 11202
11203 static final int SCISSOR_TEST = 0x0C11; 11203 static const int SCISSOR_TEST = 0x0C11;
11204 11204
11205 static final int SHADER_TYPE = 0x8B4F; 11205 static const int SHADER_TYPE = 0x8B4F;
11206 11206
11207 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; 11207 static const int SHADING_LANGUAGE_VERSION = 0x8B8C;
11208 11208
11209 static final int SHORT = 0x1402; 11209 static const int SHORT = 0x1402;
11210 11210
11211 static final int SRC_ALPHA = 0x0302; 11211 static const int SRC_ALPHA = 0x0302;
11212 11212
11213 static final int SRC_ALPHA_SATURATE = 0x0308; 11213 static const int SRC_ALPHA_SATURATE = 0x0308;
11214 11214
11215 static final int SRC_COLOR = 0x0300; 11215 static const int SRC_COLOR = 0x0300;
11216 11216
11217 static final int STATIC_DRAW = 0x88E4; 11217 static const int STATIC_DRAW = 0x88E4;
11218 11218
11219 static final int STENCIL_ATTACHMENT = 0x8D20; 11219 static const int STENCIL_ATTACHMENT = 0x8D20;
11220 11220
11221 static final int STENCIL_BACK_FAIL = 0x8801; 11221 static const int STENCIL_BACK_FAIL = 0x8801;
11222 11222
11223 static final int STENCIL_BACK_FUNC = 0x8800; 11223 static const int STENCIL_BACK_FUNC = 0x8800;
11224 11224
11225 static final int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; 11225 static const int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802;
11226 11226
11227 static final int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; 11227 static const int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803;
11228 11228
11229 static final int STENCIL_BACK_REF = 0x8CA3; 11229 static const int STENCIL_BACK_REF = 0x8CA3;
11230 11230
11231 static final int STENCIL_BACK_VALUE_MASK = 0x8CA4; 11231 static const int STENCIL_BACK_VALUE_MASK = 0x8CA4;
11232 11232
11233 static final int STENCIL_BACK_WRITEMASK = 0x8CA5; 11233 static const int STENCIL_BACK_WRITEMASK = 0x8CA5;
11234 11234
11235 static final int STENCIL_BITS = 0x0D57; 11235 static const int STENCIL_BITS = 0x0D57;
11236 11236
11237 static final int STENCIL_BUFFER_BIT = 0x00000400; 11237 static const int STENCIL_BUFFER_BIT = 0x00000400;
11238 11238
11239 static final int STENCIL_CLEAR_VALUE = 0x0B91; 11239 static const int STENCIL_CLEAR_VALUE = 0x0B91;
11240 11240
11241 static final int STENCIL_FAIL = 0x0B94; 11241 static const int STENCIL_FAIL = 0x0B94;
11242 11242
11243 static final int STENCIL_FUNC = 0x0B92; 11243 static const int STENCIL_FUNC = 0x0B92;
11244 11244
11245 static final int STENCIL_INDEX = 0x1901; 11245 static const int STENCIL_INDEX = 0x1901;
11246 11246
11247 static final int STENCIL_INDEX8 = 0x8D48; 11247 static const int STENCIL_INDEX8 = 0x8D48;
11248 11248
11249 static final int STENCIL_PASS_DEPTH_FAIL = 0x0B95; 11249 static const int STENCIL_PASS_DEPTH_FAIL = 0x0B95;
11250 11250
11251 static final int STENCIL_PASS_DEPTH_PASS = 0x0B96; 11251 static const int STENCIL_PASS_DEPTH_PASS = 0x0B96;
11252 11252
11253 static final int STENCIL_REF = 0x0B97; 11253 static const int STENCIL_REF = 0x0B97;
11254 11254
11255 static final int STENCIL_TEST = 0x0B90; 11255 static const int STENCIL_TEST = 0x0B90;
11256 11256
11257 static final int STENCIL_VALUE_MASK = 0x0B93; 11257 static const int STENCIL_VALUE_MASK = 0x0B93;
11258 11258
11259 static final int STENCIL_WRITEMASK = 0x0B98; 11259 static const int STENCIL_WRITEMASK = 0x0B98;
11260 11260
11261 static final int STREAM_DRAW = 0x88E0; 11261 static const int STREAM_DRAW = 0x88E0;
11262 11262
11263 static final int SUBPIXEL_BITS = 0x0D50; 11263 static const int SUBPIXEL_BITS = 0x0D50;
11264 11264
11265 static final int TEXTURE = 0x1702; 11265 static const int TEXTURE = 0x1702;
11266 11266
11267 static final int TEXTURE0 = 0x84C0; 11267 static const int TEXTURE0 = 0x84C0;
11268 11268
11269 static final int TEXTURE1 = 0x84C1; 11269 static const int TEXTURE1 = 0x84C1;
11270 11270
11271 static final int TEXTURE10 = 0x84CA; 11271 static const int TEXTURE10 = 0x84CA;
11272 11272
11273 static final int TEXTURE11 = 0x84CB; 11273 static const int TEXTURE11 = 0x84CB;
11274 11274
11275 static final int TEXTURE12 = 0x84CC; 11275 static const int TEXTURE12 = 0x84CC;
11276 11276
11277 static final int TEXTURE13 = 0x84CD; 11277 static const int TEXTURE13 = 0x84CD;
11278 11278
11279 static final int TEXTURE14 = 0x84CE; 11279 static const int TEXTURE14 = 0x84CE;
11280 11280
11281 static final int TEXTURE15 = 0x84CF; 11281 static const int TEXTURE15 = 0x84CF;
11282 11282
11283 static final int TEXTURE16 = 0x84D0; 11283 static const int TEXTURE16 = 0x84D0;
11284 11284
11285 static final int TEXTURE17 = 0x84D1; 11285 static const int TEXTURE17 = 0x84D1;
11286 11286
11287 static final int TEXTURE18 = 0x84D2; 11287 static const int TEXTURE18 = 0x84D2;
11288 11288
11289 static final int TEXTURE19 = 0x84D3; 11289 static const int TEXTURE19 = 0x84D3;
11290 11290
11291 static final int TEXTURE2 = 0x84C2; 11291 static const int TEXTURE2 = 0x84C2;
11292 11292
11293 static final int TEXTURE20 = 0x84D4; 11293 static const int TEXTURE20 = 0x84D4;
11294 11294
11295 static final int TEXTURE21 = 0x84D5; 11295 static const int TEXTURE21 = 0x84D5;
11296 11296
11297 static final int TEXTURE22 = 0x84D6; 11297 static const int TEXTURE22 = 0x84D6;
11298 11298
11299 static final int TEXTURE23 = 0x84D7; 11299 static const int TEXTURE23 = 0x84D7;
11300 11300
11301 static final int TEXTURE24 = 0x84D8; 11301 static const int TEXTURE24 = 0x84D8;
11302 11302
11303 static final int TEXTURE25 = 0x84D9; 11303 static const int TEXTURE25 = 0x84D9;
11304 11304
11305 static final int TEXTURE26 = 0x84DA; 11305 static const int TEXTURE26 = 0x84DA;
11306 11306
11307 static final int TEXTURE27 = 0x84DB; 11307 static const int TEXTURE27 = 0x84DB;
11308 11308
11309 static final int TEXTURE28 = 0x84DC; 11309 static const int TEXTURE28 = 0x84DC;
11310 11310
11311 static final int TEXTURE29 = 0x84DD; 11311 static const int TEXTURE29 = 0x84DD;
11312 11312
11313 static final int TEXTURE3 = 0x84C3; 11313 static const int TEXTURE3 = 0x84C3;
11314 11314
11315 static final int TEXTURE30 = 0x84DE; 11315 static const int TEXTURE30 = 0x84DE;
11316 11316
11317 static final int TEXTURE31 = 0x84DF; 11317 static const int TEXTURE31 = 0x84DF;
11318 11318
11319 static final int TEXTURE4 = 0x84C4; 11319 static const int TEXTURE4 = 0x84C4;
11320 11320
11321 static final int TEXTURE5 = 0x84C5; 11321 static const int TEXTURE5 = 0x84C5;
11322 11322
11323 static final int TEXTURE6 = 0x84C6; 11323 static const int TEXTURE6 = 0x84C6;
11324 11324
11325 static final int TEXTURE7 = 0x84C7; 11325 static const int TEXTURE7 = 0x84C7;
11326 11326
11327 static final int TEXTURE8 = 0x84C8; 11327 static const int TEXTURE8 = 0x84C8;
11328 11328
11329 static final int TEXTURE9 = 0x84C9; 11329 static const int TEXTURE9 = 0x84C9;
11330 11330
11331 static final int TEXTURE_2D = 0x0DE1; 11331 static const int TEXTURE_2D = 0x0DE1;
11332 11332
11333 static final int TEXTURE_BINDING_2D = 0x8069; 11333 static const int TEXTURE_BINDING_2D = 0x8069;
11334 11334
11335 static final int TEXTURE_BINDING_CUBE_MAP = 0x8514; 11335 static const int TEXTURE_BINDING_CUBE_MAP = 0x8514;
11336 11336
11337 static final int TEXTURE_CUBE_MAP = 0x8513; 11337 static const int TEXTURE_CUBE_MAP = 0x8513;
11338 11338
11339 static final int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; 11339 static const int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516;
11340 11340
11341 static final int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; 11341 static const int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518;
11342 11342
11343 static final int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; 11343 static const int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A;
11344 11344
11345 static final int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; 11345 static const int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515;
11346 11346
11347 static final int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; 11347 static const int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517;
11348 11348
11349 static final int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; 11349 static const int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519;
11350 11350
11351 static final int TEXTURE_MAG_FILTER = 0x2800; 11351 static const int TEXTURE_MAG_FILTER = 0x2800;
11352 11352
11353 static final int TEXTURE_MIN_FILTER = 0x2801; 11353 static const int TEXTURE_MIN_FILTER = 0x2801;
11354 11354
11355 static final int TEXTURE_WRAP_S = 0x2802; 11355 static const int TEXTURE_WRAP_S = 0x2802;
11356 11356
11357 static final int TEXTURE_WRAP_T = 0x2803; 11357 static const int TEXTURE_WRAP_T = 0x2803;
11358 11358
11359 static final int TRIANGLES = 0x0004; 11359 static const int TRIANGLES = 0x0004;
11360 11360
11361 static final int TRIANGLE_FAN = 0x0006; 11361 static const int TRIANGLE_FAN = 0x0006;
11362 11362
11363 static final int TRIANGLE_STRIP = 0x0005; 11363 static const int TRIANGLE_STRIP = 0x0005;
11364 11364
11365 static final int UNPACK_ALIGNMENT = 0x0CF5; 11365 static const int UNPACK_ALIGNMENT = 0x0CF5;
11366 11366
11367 static final int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; 11367 static const int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243;
11368 11368
11369 static final int UNPACK_FLIP_Y_WEBGL = 0x9240; 11369 static const int UNPACK_FLIP_Y_WEBGL = 0x9240;
11370 11370
11371 static final int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; 11371 static const int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241;
11372 11372
11373 static final int UNSIGNED_BYTE = 0x1401; 11373 static const int UNSIGNED_BYTE = 0x1401;
11374 11374
11375 static final int UNSIGNED_INT = 0x1405; 11375 static const int UNSIGNED_INT = 0x1405;
11376 11376
11377 static final int UNSIGNED_SHORT = 0x1403; 11377 static const int UNSIGNED_SHORT = 0x1403;
11378 11378
11379 static final int UNSIGNED_SHORT_4_4_4_4 = 0x8033; 11379 static const int UNSIGNED_SHORT_4_4_4_4 = 0x8033;
11380 11380
11381 static final int UNSIGNED_SHORT_5_5_5_1 = 0x8034; 11381 static const int UNSIGNED_SHORT_5_5_5_1 = 0x8034;
11382 11382
11383 static final int UNSIGNED_SHORT_5_6_5 = 0x8363; 11383 static const int UNSIGNED_SHORT_5_6_5 = 0x8363;
11384 11384
11385 static final int VALIDATE_STATUS = 0x8B83; 11385 static const int VALIDATE_STATUS = 0x8B83;
11386 11386
11387 static final int VENDOR = 0x1F00; 11387 static const int VENDOR = 0x1F00;
11388 11388
11389 static final int VERSION = 0x1F02; 11389 static const int VERSION = 0x1F02;
11390 11390
11391 static final int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; 11391 static const int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F;
11392 11392
11393 static final int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; 11393 static const int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622;
11394 11394
11395 static final int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; 11395 static const int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A;
11396 11396
11397 static final int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; 11397 static const int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645;
11398 11398
11399 static final int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; 11399 static const int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623;
11400 11400
11401 static final int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; 11401 static const int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624;
11402 11402
11403 static final int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; 11403 static const int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625;
11404 11404
11405 static final int VERTEX_SHADER = 0x8B31; 11405 static const int VERTEX_SHADER = 0x8B31;
11406 11406
11407 static final int VIEWPORT = 0x0BA2; 11407 static const int VIEWPORT = 0x0BA2;
11408 11408
11409 static final int ZERO = 0; 11409 static const int ZERO = 0;
11410 11410
11411 final int drawingBufferHeight; 11411 final int drawingBufferHeight;
11412 11412
11413 final int drawingBufferWidth; 11413 final int drawingBufferWidth;
11414 11414
11415 void activeTexture(int texture); 11415 void activeTexture(int texture);
11416 11416
11417 void attachShader(WebGLProgram program, WebGLShader shader); 11417 void attachShader(WebGLProgram program, WebGLShader shader);
11418 11418
11419 void bindAttribLocation(WebGLProgram program, int index, String name); 11419 void bindAttribLocation(WebGLProgram program, int index, String name);
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
11733 interface WebGLVertexArrayObjectOES { 11733 interface WebGLVertexArrayObjectOES {
11734 } 11734 }
11735 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11735 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11736 // for details. All rights reserved. Use of this source code is governed by a 11736 // for details. All rights reserved. Use of this source code is governed by a
11737 // BSD-style license that can be found in the LICENSE file. 11737 // BSD-style license that can be found in the LICENSE file.
11738 11738
11739 // WARNING: Do not edit - generated code. 11739 // WARNING: Do not edit - generated code.
11740 11740
11741 interface WebKitAnimation { 11741 interface WebKitAnimation {
11742 11742
11743 static final int DIRECTION_ALTERNATE = 1; 11743 static const int DIRECTION_ALTERNATE = 1;
11744 11744
11745 static final int DIRECTION_NORMAL = 0; 11745 static const int DIRECTION_NORMAL = 0;
11746 11746
11747 static final int FILL_BACKWARDS = 1; 11747 static const int FILL_BACKWARDS = 1;
11748 11748
11749 static final int FILL_BOTH = 3; 11749 static const int FILL_BOTH = 3;
11750 11750
11751 static final int FILL_FORWARDS = 2; 11751 static const int FILL_FORWARDS = 2;
11752 11752
11753 static final int FILL_NONE = 0; 11753 static const int FILL_NONE = 0;
11754 11754
11755 final num delay; 11755 final num delay;
11756 11756
11757 final int direction; 11757 final int direction;
11758 11758
11759 final num duration; 11759 final num duration;
11760 11760
11761 num elapsedTime; 11761 num elapsedTime;
11762 11762
11763 final bool ended; 11763 final bool ended;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
11799 WebKitAnimation item(int index); 11799 WebKitAnimation item(int index);
11800 } 11800 }
11801 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11801 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11802 // for details. All rights reserved. Use of this source code is governed by a 11802 // for details. All rights reserved. Use of this source code is governed by a
11803 // BSD-style license that can be found in the LICENSE file. 11803 // BSD-style license that can be found in the LICENSE file.
11804 11804
11805 // WARNING: Do not edit - generated code. 11805 // WARNING: Do not edit - generated code.
11806 11806
11807 interface WebKitCSSFilterValue extends CSSValueList { 11807 interface WebKitCSSFilterValue extends CSSValueList {
11808 11808
11809 static final int CSS_FILTER_BLUR = 10; 11809 static const int CSS_FILTER_BLUR = 10;
11810 11810
11811 static final int CSS_FILTER_BRIGHTNESS = 8; 11811 static const int CSS_FILTER_BRIGHTNESS = 8;
11812 11812
11813 static final int CSS_FILTER_CONTRAST = 9; 11813 static const int CSS_FILTER_CONTRAST = 9;
11814 11814
11815 static final int CSS_FILTER_CUSTOM = 12; 11815 static const int CSS_FILTER_CUSTOM = 12;
11816 11816
11817 static final int CSS_FILTER_DROP_SHADOW = 11; 11817 static const int CSS_FILTER_DROP_SHADOW = 11;
11818 11818
11819 static final int CSS_FILTER_GRAYSCALE = 2; 11819 static const int CSS_FILTER_GRAYSCALE = 2;
11820 11820
11821 static final int CSS_FILTER_HUE_ROTATE = 5; 11821 static const int CSS_FILTER_HUE_ROTATE = 5;
11822 11822
11823 static final int CSS_FILTER_INVERT = 6; 11823 static const int CSS_FILTER_INVERT = 6;
11824 11824
11825 static final int CSS_FILTER_OPACITY = 7; 11825 static const int CSS_FILTER_OPACITY = 7;
11826 11826
11827 static final int CSS_FILTER_REFERENCE = 1; 11827 static const int CSS_FILTER_REFERENCE = 1;
11828 11828
11829 static final int CSS_FILTER_SATURATE = 4; 11829 static const int CSS_FILTER_SATURATE = 4;
11830 11830
11831 static final int CSS_FILTER_SEPIA = 3; 11831 static const int CSS_FILTER_SEPIA = 3;
11832 11832
11833 final int operationType; 11833 final int operationType;
11834 } 11834 }
11835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11835 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11836 // for details. All rights reserved. Use of this source code is governed by a 11836 // for details. All rights reserved. Use of this source code is governed by a
11837 // BSD-style license that can be found in the LICENSE file. 11837 // BSD-style license that can be found in the LICENSE file.
11838 11838
11839 // WARNING: Do not edit - generated code. 11839 // WARNING: Do not edit - generated code.
11840 11840
11841 interface WebKitCSSKeyframeRule extends CSSRule { 11841 interface WebKitCSSKeyframeRule extends CSSRule {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
11937 WebKitCSSMatrix translate(num x, num y, num z); 11937 WebKitCSSMatrix translate(num x, num y, num z);
11938 } 11938 }
11939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11939 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11940 // for details. All rights reserved. Use of this source code is governed by a 11940 // for details. All rights reserved. Use of this source code is governed by a
11941 // BSD-style license that can be found in the LICENSE file. 11941 // BSD-style license that can be found in the LICENSE file.
11942 11942
11943 // WARNING: Do not edit - generated code. 11943 // WARNING: Do not edit - generated code.
11944 11944
11945 interface WebKitCSSTransformValue extends CSSValueList { 11945 interface WebKitCSSTransformValue extends CSSValueList {
11946 11946
11947 static final int CSS_MATRIX = 11; 11947 static const int CSS_MATRIX = 11;
11948 11948
11949 static final int CSS_MATRIX3D = 21; 11949 static const int CSS_MATRIX3D = 21;
11950 11950
11951 static final int CSS_PERSPECTIVE = 20; 11951 static const int CSS_PERSPECTIVE = 20;
11952 11952
11953 static final int CSS_ROTATE = 4; 11953 static const int CSS_ROTATE = 4;
11954 11954
11955 static final int CSS_ROTATE3D = 17; 11955 static const int CSS_ROTATE3D = 17;
11956 11956
11957 static final int CSS_ROTATEX = 14; 11957 static const int CSS_ROTATEX = 14;
11958 11958
11959 static final int CSS_ROTATEY = 15; 11959 static const int CSS_ROTATEY = 15;
11960 11960
11961 static final int CSS_ROTATEZ = 16; 11961 static const int CSS_ROTATEZ = 16;
11962 11962
11963 static final int CSS_SCALE = 5; 11963 static const int CSS_SCALE = 5;
11964 11964
11965 static final int CSS_SCALE3D = 19; 11965 static const int CSS_SCALE3D = 19;
11966 11966
11967 static final int CSS_SCALEX = 6; 11967 static const int CSS_SCALEX = 6;
11968 11968
11969 static final int CSS_SCALEY = 7; 11969 static const int CSS_SCALEY = 7;
11970 11970
11971 static final int CSS_SCALEZ = 18; 11971 static const int CSS_SCALEZ = 18;
11972 11972
11973 static final int CSS_SKEW = 8; 11973 static const int CSS_SKEW = 8;
11974 11974
11975 static final int CSS_SKEWX = 9; 11975 static const int CSS_SKEWX = 9;
11976 11976
11977 static final int CSS_SKEWY = 10; 11977 static const int CSS_SKEWY = 10;
11978 11978
11979 static final int CSS_TRANSLATE = 1; 11979 static const int CSS_TRANSLATE = 1;
11980 11980
11981 static final int CSS_TRANSLATE3D = 13; 11981 static const int CSS_TRANSLATE3D = 13;
11982 11982
11983 static final int CSS_TRANSLATEX = 2; 11983 static const int CSS_TRANSLATEX = 2;
11984 11984
11985 static final int CSS_TRANSLATEY = 3; 11985 static const int CSS_TRANSLATEY = 3;
11986 11986
11987 static final int CSS_TRANSLATEZ = 12; 11987 static const int CSS_TRANSLATEZ = 12;
11988 11988
11989 final int operationType; 11989 final int operationType;
11990 } 11990 }
11991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 11991 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
11992 // for details. All rights reserved. Use of this source code is governed by a 11992 // for details. All rights reserved. Use of this source code is governed by a
11993 // BSD-style license that can be found in the LICENSE file. 11993 // BSD-style license that can be found in the LICENSE file.
11994 11994
11995 // WARNING: Do not edit - generated code. 11995 // WARNING: Do not edit - generated code.
11996 11996
11997 interface WebKitNamedFlow extends EventTarget { 11997 interface WebKitNamedFlow extends EventTarget {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
12043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12043 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12044 // for details. All rights reserved. Use of this source code is governed by a 12044 // for details. All rights reserved. Use of this source code is governed by a
12045 // BSD-style license that can be found in the LICENSE file. 12045 // BSD-style license that can be found in the LICENSE file.
12046 12046
12047 // WARNING: Do not edit - generated code. 12047 // WARNING: Do not edit - generated code.
12048 12048
12049 interface WebSocket extends EventTarget default _WebSocketFactoryProvider { 12049 interface WebSocket extends EventTarget default _WebSocketFactoryProvider {
12050 12050
12051 WebSocket(String url); 12051 WebSocket(String url);
12052 12052
12053 static final int CLOSED = 3; 12053 static const int CLOSED = 3;
12054 12054
12055 static final int CLOSING = 2; 12055 static const int CLOSING = 2;
12056 12056
12057 static final int CONNECTING = 0; 12057 static const int CONNECTING = 0;
12058 12058
12059 static final int OPEN = 1; 12059 static const int OPEN = 1;
12060 12060
12061 final String URL; 12061 final String URL;
12062 12062
12063 String binaryType; 12063 String binaryType;
12064 12064
12065 final int bufferedAmount; 12065 final int bufferedAmount;
12066 12066
12067 final String extensions; 12067 final String extensions;
12068 12068
12069 final String protocol; 12069 final String protocol;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
12160 12160
12161 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size); 12161 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size);
12162 12162
12163 EntrySync webkitResolveLocalFileSystemSyncURL(String url); 12163 EntrySync webkitResolveLocalFileSystemSyncURL(String url);
12164 12164
12165 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]); 12165 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]);
12166 } 12166 }
12167 12167
12168 interface WorkerContext extends WorkerGlobalScope { 12168 interface WorkerContext extends WorkerGlobalScope {
12169 12169
12170 static final int PERSISTENT = 1; 12170 static const int PERSISTENT = 1;
12171 12171
12172 static final int TEMPORARY = 0; 12172 static const int TEMPORARY = 0;
12173 } 12173 }
12174 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12174 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12175 // for details. All rights reserved. Use of this source code is governed by a 12175 // for details. All rights reserved. Use of this source code is governed by a
12176 // BSD-style license that can be found in the LICENSE file. 12176 // BSD-style license that can be found in the LICENSE file.
12177 12177
12178 // WARNING: Do not edit - generated code. 12178 // WARNING: Do not edit - generated code.
12179 12179
12180 interface WorkerLocation { 12180 interface WorkerLocation {
12181 12181
12182 final String hash; 12182 final String hash;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
12218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12218 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12219 // for details. All rights reserved. Use of this source code is governed by a 12219 // for details. All rights reserved. Use of this source code is governed by a
12220 // BSD-style license that can be found in the LICENSE file. 12220 // BSD-style license that can be found in the LICENSE file.
12221 12221
12222 // WARNING: Do not edit - generated code. 12222 // WARNING: Do not edit - generated code.
12223 12223
12224 interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi der { 12224 interface XMLHttpRequest extends EventTarget default _XMLHttpRequestFactoryProvi der {
12225 12225
12226 XMLHttpRequest(); 12226 XMLHttpRequest();
12227 12227
12228 static final int DONE = 4; 12228 static const int DONE = 4;
12229 12229
12230 static final int HEADERS_RECEIVED = 2; 12230 static const int HEADERS_RECEIVED = 2;
12231 12231
12232 static final int LOADING = 3; 12232 static const int LOADING = 3;
12233 12233
12234 static final int OPENED = 1; 12234 static const int OPENED = 1;
12235 12235
12236 static final int UNSENT = 0; 12236 static const int UNSENT = 0;
12237 12237
12238 final int readyState; 12238 final int readyState;
12239 12239
12240 final Object response; 12240 final Object response;
12241 12241
12242 final String responseText; 12242 final String responseText;
12243 12243
12244 String responseType; 12244 String responseType;
12245 12245
12246 final Document responseXML; 12246 final Document responseXML;
(...skipping 27 matching lines...) Expand all
12274 void setRequestHeader(String header, String value); 12274 void setRequestHeader(String header, String value);
12275 } 12275 }
12276 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12276 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12277 // for details. All rights reserved. Use of this source code is governed by a 12277 // for details. All rights reserved. Use of this source code is governed by a
12278 // BSD-style license that can be found in the LICENSE file. 12278 // BSD-style license that can be found in the LICENSE file.
12279 12279
12280 // WARNING: Do not edit - generated code. 12280 // WARNING: Do not edit - generated code.
12281 12281
12282 interface XMLHttpRequestException { 12282 interface XMLHttpRequestException {
12283 12283
12284 static final int ABORT_ERR = 102; 12284 static const int ABORT_ERR = 102;
12285 12285
12286 static final int NETWORK_ERR = 101; 12286 static const int NETWORK_ERR = 101;
12287 12287
12288 final int code; 12288 final int code;
12289 12289
12290 final String message; 12290 final String message;
12291 12291
12292 final String name; 12292 final String name;
12293 12293
12294 String toString(); 12294 String toString();
12295 } 12295 }
12296 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12296 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
12348 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult); 12348 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult);
12349 } 12349 }
12350 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12350 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12351 // for details. All rights reserved. Use of this source code is governed by a 12351 // for details. All rights reserved. Use of this source code is governed by a
12352 // BSD-style license that can be found in the LICENSE file. 12352 // BSD-style license that can be found in the LICENSE file.
12353 12353
12354 // WARNING: Do not edit - generated code. 12354 // WARNING: Do not edit - generated code.
12355 12355
12356 interface XPathException { 12356 interface XPathException {
12357 12357
12358 static final int INVALID_EXPRESSION_ERR = 51; 12358 static const int INVALID_EXPRESSION_ERR = 51;
12359 12359
12360 static final int TYPE_ERR = 52; 12360 static const int TYPE_ERR = 52;
12361 12361
12362 final int code; 12362 final int code;
12363 12363
12364 final String message; 12364 final String message;
12365 12365
12366 final String name; 12366 final String name;
12367 12367
12368 String toString(); 12368 String toString();
12369 } 12369 }
12370 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12370 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 17 matching lines...) Expand all
12388 String lookupNamespaceURI(String prefix); 12388 String lookupNamespaceURI(String prefix);
12389 } 12389 }
12390 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12390 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12391 // for details. All rights reserved. Use of this source code is governed by a 12391 // for details. All rights reserved. Use of this source code is governed by a
12392 // BSD-style license that can be found in the LICENSE file. 12392 // BSD-style license that can be found in the LICENSE file.
12393 12393
12394 // WARNING: Do not edit - generated code. 12394 // WARNING: Do not edit - generated code.
12395 12395
12396 interface XPathResult { 12396 interface XPathResult {
12397 12397
12398 static final int ANY_TYPE = 0; 12398 static const int ANY_TYPE = 0;
12399 12399
12400 static final int ANY_UNORDERED_NODE_TYPE = 8; 12400 static const int ANY_UNORDERED_NODE_TYPE = 8;
12401 12401
12402 static final int BOOLEAN_TYPE = 3; 12402 static const int BOOLEAN_TYPE = 3;
12403 12403
12404 static final int FIRST_ORDERED_NODE_TYPE = 9; 12404 static const int FIRST_ORDERED_NODE_TYPE = 9;
12405 12405
12406 static final int NUMBER_TYPE = 1; 12406 static const int NUMBER_TYPE = 1;
12407 12407
12408 static final int ORDERED_NODE_ITERATOR_TYPE = 5; 12408 static const int ORDERED_NODE_ITERATOR_TYPE = 5;
12409 12409
12410 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; 12410 static const int ORDERED_NODE_SNAPSHOT_TYPE = 7;
12411 12411
12412 static final int STRING_TYPE = 2; 12412 static const int STRING_TYPE = 2;
12413 12413
12414 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; 12414 static const int UNORDERED_NODE_ITERATOR_TYPE = 4;
12415 12415
12416 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; 12416 static const int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
12417 12417
12418 final bool booleanValue; 12418 final bool booleanValue;
12419 12419
12420 final bool invalidIteratorState; 12420 final bool invalidIteratorState;
12421 12421
12422 final num numberValue; 12422 final num numberValue;
12423 12423
12424 final int resultType; 12424 final int resultType;
12425 12425
12426 final Node singleNodeValue; 12426 final Node singleNodeValue;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
12482 * Defines the standard key locations returned by 12482 * Defines the standard key locations returned by
12483 * KeyboardEvent.getKeyLocation. 12483 * KeyboardEvent.getKeyLocation.
12484 */ 12484 */
12485 interface KeyLocation { 12485 interface KeyLocation {
12486 12486
12487 /** 12487 /**
12488 * The event key is not distinguished as the left or right version 12488 * The event key is not distinguished as the left or right version
12489 * of the key, and did not originate from the numeric keypad (or did not 12489 * of the key, and did not originate from the numeric keypad (or did not
12490 * originate with a virtual key corresponding to the numeric keypad). 12490 * originate with a virtual key corresponding to the numeric keypad).
12491 */ 12491 */
12492 static final int STANDARD = 0; 12492 static const int STANDARD = 0;
12493 12493
12494 /** 12494 /**
12495 * The event key is in the left key location. 12495 * The event key is in the left key location.
12496 */ 12496 */
12497 static final int LEFT = 1; 12497 static const int LEFT = 1;
12498 12498
12499 /** 12499 /**
12500 * The event key is in the right key location. 12500 * The event key is in the right key location.
12501 */ 12501 */
12502 static final int RIGHT = 2; 12502 static const int RIGHT = 2;
12503 12503
12504 /** 12504 /**
12505 * The event key originated on the numeric keypad or with a virtual key 12505 * The event key originated on the numeric keypad or with a virtual key
12506 * corresponding to the numeric keypad. 12506 * corresponding to the numeric keypad.
12507 */ 12507 */
12508 static final int NUMPAD = 3; 12508 static const int NUMPAD = 3;
12509 12509
12510 /** 12510 /**
12511 * The event key originated on a mobile device, either on a physical 12511 * The event key originated on a mobile device, either on a physical
12512 * keypad or a virtual keyboard. 12512 * keypad or a virtual keyboard.
12513 */ 12513 */
12514 static final int MOBILE = 4; 12514 static const int MOBILE = 4;
12515 12515
12516 /** 12516 /**
12517 * The event key originated on a game controller or a joystick on a mobile 12517 * The event key originated on a game controller or a joystick on a mobile
12518 * device. 12518 * device.
12519 */ 12519 */
12520 static final int JOYSTICK = 5; 12520 static const int JOYSTICK = 5;
12521 } 12521 }
12522 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 12522 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
12523 // for details. All rights reserved. Use of this source code is governed by a 12523 // for details. All rights reserved. Use of this source code is governed by a
12524 // BSD-style license that can be found in the LICENSE file. 12524 // BSD-style license that can be found in the LICENSE file.
12525 12525
12526 /** 12526 /**
12527 * Defines the standard keyboard identifier names for keys that are returned 12527 * Defines the standard keyboard identifier names for keys that are returned
12528 * by KeyEvent.getKeyboardIdentifier when the key does not have a direct 12528 * by KeyEvent.getKeyboardIdentifier when the key does not have a direct
12529 * unicode mapping. 12529 * unicode mapping.
12530 */ 12530 */
12531 interface KeyName { 12531 interface KeyName {
12532 12532
12533 /** The Accept (Commit, OK) key */ 12533 /** The Accept (Commit, OK) key */
12534 static final String ACCEPT = "Accept"; 12534 static const String ACCEPT = "Accept";
12535 12535
12536 /** The Add key */ 12536 /** The Add key */
12537 static final String ADD = "Add"; 12537 static const String ADD = "Add";
12538 12538
12539 /** The Again key */ 12539 /** The Again key */
12540 static final String AGAIN = "Again"; 12540 static const String AGAIN = "Again";
12541 12541
12542 /** The All Candidates key */ 12542 /** The All Candidates key */
12543 static final String ALL_CANDIDATES = "AllCandidates"; 12543 static const String ALL_CANDIDATES = "AllCandidates";
12544 12544
12545 /** The Alphanumeric key */ 12545 /** The Alphanumeric key */
12546 static final String ALPHANUMERIC = "Alphanumeric"; 12546 static const String ALPHANUMERIC = "Alphanumeric";
12547 12547
12548 /** The Alt (Menu) key */ 12548 /** The Alt (Menu) key */
12549 static final String ALT = "Alt"; 12549 static const String ALT = "Alt";
12550 12550
12551 /** The Alt-Graph key */ 12551 /** The Alt-Graph key */
12552 static final String ALT_GRAPH = "AltGraph"; 12552 static const String ALT_GRAPH = "AltGraph";
12553 12553
12554 /** The Application key */ 12554 /** The Application key */
12555 static final String APPS = "Apps"; 12555 static const String APPS = "Apps";
12556 12556
12557 /** The ATTN key */ 12557 /** The ATTN key */
12558 static final String ATTN = "Attn"; 12558 static const String ATTN = "Attn";
12559 12559
12560 /** The Browser Back key */ 12560 /** The Browser Back key */
12561 static final String BROWSER_BACK = "BrowserBack"; 12561 static const String BROWSER_BACK = "BrowserBack";
12562 12562
12563 /** The Browser Favorites key */ 12563 /** The Browser Favorites key */
12564 static final String BROWSER_FAVORTIES = "BrowserFavorites"; 12564 static const String BROWSER_FAVORTIES = "BrowserFavorites";
12565 12565
12566 /** The Browser Forward key */ 12566 /** The Browser Forward key */
12567 static final String BROWSER_FORWARD = "BrowserForward"; 12567 static const String BROWSER_FORWARD = "BrowserForward";
12568 12568
12569 /** The Browser Home key */ 12569 /** The Browser Home key */
12570 static final String BROWSER_NAME = "BrowserHome"; 12570 static const String BROWSER_NAME = "BrowserHome";
12571 12571
12572 /** The Browser Refresh key */ 12572 /** The Browser Refresh key */
12573 static final String BROWSER_REFRESH = "BrowserRefresh"; 12573 static const String BROWSER_REFRESH = "BrowserRefresh";
12574 12574
12575 /** The Browser Search key */ 12575 /** The Browser Search key */
12576 static final String BROWSER_SEARCH = "BrowserSearch"; 12576 static const String BROWSER_SEARCH = "BrowserSearch";
12577 12577
12578 /** The Browser Stop key */ 12578 /** The Browser Stop key */
12579 static final String BROWSER_STOP = "BrowserStop"; 12579 static const String BROWSER_STOP = "BrowserStop";
12580 12580
12581 /** The Camera key */ 12581 /** The Camera key */
12582 static final String CAMERA = "Camera"; 12582 static const String CAMERA = "Camera";
12583 12583
12584 /** The Caps Lock (Capital) key */ 12584 /** The Caps Lock (Capital) key */
12585 static final String CAPS_LOCK = "CapsLock"; 12585 static const String CAPS_LOCK = "CapsLock";
12586 12586
12587 /** The Clear key */ 12587 /** The Clear key */
12588 static final String CLEAR = "Clear"; 12588 static const String CLEAR = "Clear";
12589 12589
12590 /** The Code Input key */ 12590 /** The Code Input key */
12591 static final String CODE_INPUT = "CodeInput"; 12591 static const String CODE_INPUT = "CodeInput";
12592 12592
12593 /** The Compose key */ 12593 /** The Compose key */
12594 static final String COMPOSE = "Compose"; 12594 static const String COMPOSE = "Compose";
12595 12595
12596 /** The Control (Ctrl) key */ 12596 /** The Control (Ctrl) key */
12597 static final String CONTROL = "Control"; 12597 static const String CONTROL = "Control";
12598 12598
12599 /** The Crsel key */ 12599 /** The Crsel key */
12600 static final String CRSEL = "Crsel"; 12600 static const String CRSEL = "Crsel";
12601 12601
12602 /** The Convert key */ 12602 /** The Convert key */
12603 static final String CONVERT = "Convert"; 12603 static const String CONVERT = "Convert";
12604 12604
12605 /** The Copy key */ 12605 /** The Copy key */
12606 static final String COPY = "Copy"; 12606 static const String COPY = "Copy";
12607 12607
12608 /** The Cut key */ 12608 /** The Cut key */
12609 static final String CUT = "Cut"; 12609 static const String CUT = "Cut";
12610 12610
12611 /** The Decimal key */ 12611 /** The Decimal key */
12612 static final String DECIMAL = "Decimal"; 12612 static const String DECIMAL = "Decimal";
12613 12613
12614 /** The Divide key */ 12614 /** The Divide key */
12615 static final String DIVIDE = "Divide"; 12615 static const String DIVIDE = "Divide";
12616 12616
12617 /** The Down Arrow key */ 12617 /** The Down Arrow key */
12618 static final String DOWN = "Down"; 12618 static const String DOWN = "Down";
12619 12619
12620 /** The diagonal Down-Left Arrow key */ 12620 /** The diagonal Down-Left Arrow key */
12621 static final String DOWN_LEFT = "DownLeft"; 12621 static const String DOWN_LEFT = "DownLeft";
12622 12622
12623 /** The diagonal Down-Right Arrow key */ 12623 /** The diagonal Down-Right Arrow key */
12624 static final String DOWN_RIGHT = "DownRight"; 12624 static const String DOWN_RIGHT = "DownRight";
12625 12625
12626 /** The Eject key */ 12626 /** The Eject key */
12627 static final String EJECT = "Eject"; 12627 static const String EJECT = "Eject";
12628 12628
12629 /** The End key */ 12629 /** The End key */
12630 static final String END = "End"; 12630 static const String END = "End";
12631 12631
12632 /** 12632 /**
12633 * The Enter key. Note: This key value must also be used for the Return 12633 * The Enter key. Note: This key value must also be used for the Return
12634 * (Macintosh numpad) key 12634 * (Macintosh numpad) key
12635 */ 12635 */
12636 static final String ENTER = "Enter"; 12636 static const String ENTER = "Enter";
12637 12637
12638 /** The Erase EOF key */ 12638 /** The Erase EOF key */
12639 static final String ERASE_EOF= "EraseEof"; 12639 static const String ERASE_EOF= "EraseEof";
12640 12640
12641 /** The Execute key */ 12641 /** The Execute key */
12642 static final String EXECUTE = "Execute"; 12642 static const String EXECUTE = "Execute";
12643 12643
12644 /** The Exsel key */ 12644 /** The Exsel key */
12645 static final String EXSEL = "Exsel"; 12645 static const String EXSEL = "Exsel";
12646 12646
12647 /** The Function switch key */ 12647 /** The Function switch key */
12648 static final String FN = "Fn"; 12648 static const String FN = "Fn";
12649 12649
12650 /** The F1 key */ 12650 /** The F1 key */
12651 static final String F1 = "F1"; 12651 static const String F1 = "F1";
12652 12652
12653 /** The F2 key */ 12653 /** The F2 key */
12654 static final String F2 = "F2"; 12654 static const String F2 = "F2";
12655 12655
12656 /** The F3 key */ 12656 /** The F3 key */
12657 static final String F3 = "F3"; 12657 static const String F3 = "F3";
12658 12658
12659 /** The F4 key */ 12659 /** The F4 key */
12660 static final String F4 = "F4"; 12660 static const String F4 = "F4";
12661 12661
12662 /** The F5 key */ 12662 /** The F5 key */
12663 static final String F5 = "F5"; 12663 static const String F5 = "F5";
12664 12664
12665 /** The F6 key */ 12665 /** The F6 key */
12666 static final String F6 = "F6"; 12666 static const String F6 = "F6";
12667 12667
12668 /** The F7 key */ 12668 /** The F7 key */
12669 static final String F7 = "F7"; 12669 static const String F7 = "F7";
12670 12670
12671 /** The F8 key */ 12671 /** The F8 key */
12672 static final String F8 = "F8"; 12672 static const String F8 = "F8";
12673 12673
12674 /** The F9 key */ 12674 /** The F9 key */
12675 static final String F9 = "F9"; 12675 static const String F9 = "F9";
12676 12676
12677 /** The F10 key */ 12677 /** The F10 key */
12678 static final String F10 = "F10"; 12678 static const String F10 = "F10";
12679 12679
12680 /** The F11 key */ 12680 /** The F11 key */
12681 static final String F11 = "F11"; 12681 static const String F11 = "F11";
12682 12682
12683 /** The F12 key */ 12683 /** The F12 key */
12684 static final String F12 = "F12"; 12684 static const String F12 = "F12";
12685 12685
12686 /** The F13 key */ 12686 /** The F13 key */
12687 static final String F13 = "F13"; 12687 static const String F13 = "F13";
12688 12688
12689 /** The F14 key */ 12689 /** The F14 key */
12690 static final String F14 = "F14"; 12690 static const String F14 = "F14";
12691 12691
12692 /** The F15 key */ 12692 /** The F15 key */
12693 static final String F15 = "F15"; 12693 static const String F15 = "F15";
12694 12694
12695 /** The F16 key */ 12695 /** The F16 key */
12696 static final String F16 = "F16"; 12696 static const String F16 = "F16";
12697 12697
12698 /** The F17 key */ 12698 /** The F17 key */
12699 static final String F17 = "F17"; 12699 static const String F17 = "F17";
12700 12700
12701 /** The F18 key */ 12701 /** The F18 key */
12702 static final String F18 = "F18"; 12702 static const String F18 = "F18";
12703 12703
12704 /** The F19 key */ 12704 /** The F19 key */
12705 static final String F19 = "F19"; 12705 static const String F19 = "F19";
12706 12706
12707 /** The F20 key */ 12707 /** The F20 key */
12708 static final String F20 = "F20"; 12708 static const String F20 = "F20";
12709 12709
12710 /** The F21 key */ 12710 /** The F21 key */
12711 static final String F21 = "F21"; 12711 static const String F21 = "F21";
12712 12712
12713 /** The F22 key */ 12713 /** The F22 key */
12714 static final String F22 = "F22"; 12714 static const String F22 = "F22";
12715 12715
12716 /** The F23 key */ 12716 /** The F23 key */
12717 static final String F23 = "F23"; 12717 static const String F23 = "F23";
12718 12718
12719 /** The F24 key */ 12719 /** The F24 key */
12720 static final String F24 = "F24"; 12720 static const String F24 = "F24";
12721 12721
12722 /** The Final Mode (Final) key used on some asian keyboards */ 12722 /** The Final Mode (Final) key used on some asian keyboards */
12723 static final String FINAL_MODE = "FinalMode"; 12723 static const String FINAL_MODE = "FinalMode";
12724 12724
12725 /** The Find key */ 12725 /** The Find key */
12726 static final String FIND = "Find"; 12726 static const String FIND = "Find";
12727 12727
12728 /** The Full-Width Characters key */ 12728 /** The Full-Width Characters key */
12729 static final String FULL_WIDTH = "FullWidth"; 12729 static const String FULL_WIDTH = "FullWidth";
12730 12730
12731 /** The Half-Width Characters key */ 12731 /** The Half-Width Characters key */
12732 static final String HALF_WIDTH = "HalfWidth"; 12732 static const String HALF_WIDTH = "HalfWidth";
12733 12733
12734 /** The Hangul (Korean characters) Mode key */ 12734 /** The Hangul (Korean characters) Mode key */
12735 static final String HANGUL_MODE = "HangulMode"; 12735 static const String HANGUL_MODE = "HangulMode";
12736 12736
12737 /** The Hanja (Korean characters) Mode key */ 12737 /** The Hanja (Korean characters) Mode key */
12738 static final String HANJA_MODE = "HanjaMode"; 12738 static const String HANJA_MODE = "HanjaMode";
12739 12739
12740 /** The Help key */ 12740 /** The Help key */
12741 static final String HELP = "Help"; 12741 static const String HELP = "Help";
12742 12742
12743 /** The Hiragana (Japanese Kana characters) key */ 12743 /** The Hiragana (Japanese Kana characters) key */
12744 static final String HIRAGANA = "Hiragana"; 12744 static const String HIRAGANA = "Hiragana";
12745 12745
12746 /** The Home key */ 12746 /** The Home key */
12747 static final String HOME = "Home"; 12747 static const String HOME = "Home";
12748 12748
12749 /** The Insert (Ins) key */ 12749 /** The Insert (Ins) key */
12750 static final String INSERT = "Insert"; 12750 static const String INSERT = "Insert";
12751 12751
12752 /** The Japanese-Hiragana key */ 12752 /** The Japanese-Hiragana key */
12753 static final String JAPANESE_HIRAGANA = "JapaneseHiragana"; 12753 static const String JAPANESE_HIRAGANA = "JapaneseHiragana";
12754 12754
12755 /** The Japanese-Katakana key */ 12755 /** The Japanese-Katakana key */
12756 static final String JAPANESE_KATAKANA = "JapaneseKatakana"; 12756 static const String JAPANESE_KATAKANA = "JapaneseKatakana";
12757 12757
12758 /** The Japanese-Romaji key */ 12758 /** The Japanese-Romaji key */
12759 static final String JAPANESE_ROMAJI = "JapaneseRomaji"; 12759 static const String JAPANESE_ROMAJI = "JapaneseRomaji";
12760 12760
12761 /** The Junja Mode key */ 12761 /** The Junja Mode key */
12762 static final String JUNJA_MODE = "JunjaMode"; 12762 static const String JUNJA_MODE = "JunjaMode";
12763 12763
12764 /** The Kana Mode (Kana Lock) key */ 12764 /** The Kana Mode (Kana Lock) key */
12765 static final String KANA_MODE = "KanaMode"; 12765 static const String KANA_MODE = "KanaMode";
12766 12766
12767 /** 12767 /**
12768 * The Kanji (Japanese name for ideographic characters of Chinese origin) 12768 * The Kanji (Japanese name for ideographic characters of Chinese origin)
12769 * Mode key 12769 * Mode key
12770 */ 12770 */
12771 static final String KANJI_MODE = "KanjiMode"; 12771 static const String KANJI_MODE = "KanjiMode";
12772 12772
12773 /** The Katakana (Japanese Kana characters) key */ 12773 /** The Katakana (Japanese Kana characters) key */
12774 static final String KATAKANA = "Katakana"; 12774 static const String KATAKANA = "Katakana";
12775 12775
12776 /** The Start Application One key */ 12776 /** The Start Application One key */
12777 static final String LAUNCH_APPLICATION_1 = "LaunchApplication1"; 12777 static const String LAUNCH_APPLICATION_1 = "LaunchApplication1";
12778 12778
12779 /** The Start Application Two key */ 12779 /** The Start Application Two key */
12780 static final String LAUNCH_APPLICATION_2 = "LaunchApplication2"; 12780 static const String LAUNCH_APPLICATION_2 = "LaunchApplication2";
12781 12781
12782 /** The Start Mail key */ 12782 /** The Start Mail key */
12783 static final String LAUNCH_MAIL = "LaunchMail"; 12783 static const String LAUNCH_MAIL = "LaunchMail";
12784 12784
12785 /** The Left Arrow key */ 12785 /** The Left Arrow key */
12786 static final String LEFT = "Left"; 12786 static const String LEFT = "Left";
12787 12787
12788 /** The Menu key */ 12788 /** The Menu key */
12789 static final String MENU = "Menu"; 12789 static const String MENU = "Menu";
12790 12790
12791 /** 12791 /**
12792 * The Meta key. Note: This key value shall be also used for the Apple 12792 * The Meta key. Note: This key value shall be also used for the Apple
12793 * Command key 12793 * Command key
12794 */ 12794 */
12795 static final String META = "Meta"; 12795 static const String META = "Meta";
12796 12796
12797 /** The Media Next Track key */ 12797 /** The Media Next Track key */
12798 static final String MEDIA_NEXT_TRACK = "MediaNextTrack"; 12798 static const String MEDIA_NEXT_TRACK = "MediaNextTrack";
12799 12799
12800 /** The Media Play Pause key */ 12800 /** The Media Play Pause key */
12801 static final String MEDIA_PAUSE_PLAY = "MediaPlayPause"; 12801 static const String MEDIA_PAUSE_PLAY = "MediaPlayPause";
12802 12802
12803 /** The Media Previous Track key */ 12803 /** The Media Previous Track key */
12804 static final String MEDIA_PREVIOUS_TRACK = "MediaPreviousTrack"; 12804 static const String MEDIA_PREVIOUS_TRACK = "MediaPreviousTrack";
12805 12805
12806 /** The Media Stop key */ 12806 /** The Media Stop key */
12807 static final String MEDIA_STOP = "MediaStop"; 12807 static const String MEDIA_STOP = "MediaStop";
12808 12808
12809 /** The Mode Change key */ 12809 /** The Mode Change key */
12810 static final String MODE_CHANGE = "ModeChange"; 12810 static const String MODE_CHANGE = "ModeChange";
12811 12811
12812 /** The Next Candidate function key */ 12812 /** The Next Candidate function key */
12813 static final String NEXT_CANDIDATE = "NextCandidate"; 12813 static const String NEXT_CANDIDATE = "NextCandidate";
12814 12814
12815 /** The Nonconvert (Don't Convert) key */ 12815 /** The Nonconvert (Don't Convert) key */
12816 static final String NON_CONVERT = "Nonconvert"; 12816 static const String NON_CONVERT = "Nonconvert";
12817 12817
12818 /** The Number Lock key */ 12818 /** The Number Lock key */
12819 static final String NUM_LOCK = "NumLock"; 12819 static const String NUM_LOCK = "NumLock";
12820 12820
12821 /** The Page Down (Next) key */ 12821 /** The Page Down (Next) key */
12822 static final String PAGE_DOWN = "PageDown"; 12822 static const String PAGE_DOWN = "PageDown";
12823 12823
12824 /** The Page Up key */ 12824 /** The Page Up key */
12825 static final String PAGE_UP = "PageUp"; 12825 static const String PAGE_UP = "PageUp";
12826 12826
12827 /** The Paste key */ 12827 /** The Paste key */
12828 static final String PASTE = "Paste"; 12828 static const String PASTE = "Paste";
12829 12829
12830 /** The Pause key */ 12830 /** The Pause key */
12831 static final String PAUSE = "Pause"; 12831 static const String PAUSE = "Pause";
12832 12832
12833 /** The Play key */ 12833 /** The Play key */
12834 static final String PLAY = "Play"; 12834 static const String PLAY = "Play";
12835 12835
12836 /** 12836 /**
12837 * The Power key. Note: Some devices may not expose this key to the 12837 * The Power key. Note: Some devices may not expose this key to the
12838 * operating environment 12838 * operating environment
12839 */ 12839 */
12840 static final String POWER = "Power"; 12840 static const String POWER = "Power";
12841 12841
12842 /** The Previous Candidate function key */ 12842 /** The Previous Candidate function key */
12843 static final String PREVIOUS_CANDIDATE = "PreviousCandidate"; 12843 static const String PREVIOUS_CANDIDATE = "PreviousCandidate";
12844 12844
12845 /** The Print Screen (PrintScrn, SnapShot) key */ 12845 /** The Print Screen (PrintScrn, SnapShot) key */
12846 static final String PRINT_SCREEN = "PrintScreen"; 12846 static const String PRINT_SCREEN = "PrintScreen";
12847 12847
12848 /** The Process key */ 12848 /** The Process key */
12849 static final String PROCESS = "Process"; 12849 static const String PROCESS = "Process";
12850 12850
12851 /** The Props key */ 12851 /** The Props key */
12852 static final String PROPS = "Props"; 12852 static const String PROPS = "Props";
12853 12853
12854 /** The Right Arrow key */ 12854 /** The Right Arrow key */
12855 static final String RIGHT = "Right"; 12855 static const String RIGHT = "Right";
12856 12856
12857 /** The Roman Characters function key */ 12857 /** The Roman Characters function key */
12858 static final String ROMAN_CHARACTERS = "RomanCharacters"; 12858 static const String ROMAN_CHARACTERS = "RomanCharacters";
12859 12859
12860 /** The Scroll Lock key */ 12860 /** The Scroll Lock key */
12861 static final String SCROLL = "Scroll"; 12861 static const String SCROLL = "Scroll";
12862 12862
12863 /** The Select key */ 12863 /** The Select key */
12864 static final String SELECT = "Select"; 12864 static const String SELECT = "Select";
12865 12865
12866 /** The Select Media key */ 12866 /** The Select Media key */
12867 static final String SELECT_MEDIA = "SelectMedia"; 12867 static const String SELECT_MEDIA = "SelectMedia";
12868 12868
12869 /** The Separator key */ 12869 /** The Separator key */
12870 static final String SEPARATOR = "Separator"; 12870 static const String SEPARATOR = "Separator";
12871 12871
12872 /** The Shift key */ 12872 /** The Shift key */
12873 static final String SHIFT = "Shift"; 12873 static const String SHIFT = "Shift";
12874 12874
12875 /** The Soft1 key */ 12875 /** The Soft1 key */
12876 static final String SOFT_1 = "Soft1"; 12876 static const String SOFT_1 = "Soft1";
12877 12877
12878 /** The Soft2 key */ 12878 /** The Soft2 key */
12879 static final String SOFT_2 = "Soft2"; 12879 static const String SOFT_2 = "Soft2";
12880 12880
12881 /** The Soft3 key */ 12881 /** The Soft3 key */
12882 static final String SOFT_3 = "Soft3"; 12882 static const String SOFT_3 = "Soft3";
12883 12883
12884 /** The Soft4 key */ 12884 /** The Soft4 key */
12885 static final String SOFT_4 = "Soft4"; 12885 static const String SOFT_4 = "Soft4";
12886 12886
12887 /** The Stop key */ 12887 /** The Stop key */
12888 static final String STOP = "Stop"; 12888 static const String STOP = "Stop";
12889 12889
12890 /** The Subtract key */ 12890 /** The Subtract key */
12891 static final String SUBTRACT = "Subtract"; 12891 static const String SUBTRACT = "Subtract";
12892 12892
12893 /** The Symbol Lock key */ 12893 /** The Symbol Lock key */
12894 static final String SYMBOL_LOCK = "SymbolLock"; 12894 static const String SYMBOL_LOCK = "SymbolLock";
12895 12895
12896 /** The Up Arrow key */ 12896 /** The Up Arrow key */
12897 static final String UP = "Up"; 12897 static const String UP = "Up";
12898 12898
12899 /** The diagonal Up-Left Arrow key */ 12899 /** The diagonal Up-Left Arrow key */
12900 static final String UP_LEFT = "UpLeft"; 12900 static const String UP_LEFT = "UpLeft";
12901 12901
12902 /** The diagonal Up-Right Arrow key */ 12902 /** The diagonal Up-Right Arrow key */
12903 static final String UP_RIGHT = "UpRight"; 12903 static const String UP_RIGHT = "UpRight";
12904 12904
12905 /** The Undo key */ 12905 /** The Undo key */
12906 static final String UNDO = "Undo"; 12906 static const String UNDO = "Undo";
12907 12907
12908 /** The Volume Down key */ 12908 /** The Volume Down key */
12909 static final String VOLUME_DOWN = "VolumeDown"; 12909 static const String VOLUME_DOWN = "VolumeDown";
12910 12910
12911 /** The Volume Mute key */ 12911 /** The Volume Mute key */
12912 static final String VOLUMN_MUTE = "VolumeMute"; 12912 static const String VOLUMN_MUTE = "VolumeMute";
12913 12913
12914 /** The Volume Up key */ 12914 /** The Volume Up key */
12915 static final String VOLUMN_UP = "VolumeUp"; 12915 static const String VOLUMN_UP = "VolumeUp";
12916 12916
12917 /** The Windows Logo key */ 12917 /** The Windows Logo key */
12918 static final String WIN = "Win"; 12918 static const String WIN = "Win";
12919 12919
12920 /** The Zoom key */ 12920 /** The Zoom key */
12921 static final String ZOOM = "Zoom"; 12921 static const String ZOOM = "Zoom";
12922 12922
12923 /** 12923 /**
12924 * The Backspace (Back) key. Note: This key value shall be also used for the 12924 * The Backspace (Back) key. Note: This key value shall be also used for the
12925 * key labeled 'delete' MacOS keyboards when not modified by the 'Fn' key 12925 * key labeled 'delete' MacOS keyboards when not modified by the 'Fn' key
12926 */ 12926 */
12927 static final String BACKSPACE = "Backspace"; 12927 static const String BACKSPACE = "Backspace";
12928 12928
12929 /** The Horizontal Tabulation (Tab) key */ 12929 /** The Horizontal Tabulation (Tab) key */
12930 static final String TAB = "Tab"; 12930 static const String TAB = "Tab";
12931 12931
12932 /** The Cancel key */ 12932 /** The Cancel key */
12933 static final String CANCEL = "Cancel"; 12933 static const String CANCEL = "Cancel";
12934 12934
12935 /** The Escape (Esc) key */ 12935 /** The Escape (Esc) key */
12936 static final String ESC = "Esc"; 12936 static const String ESC = "Esc";
12937 12937
12938 /** The Space (Spacebar) key: */ 12938 /** The Space (Spacebar) key: */
12939 static final String SPACEBAR = "Spacebar"; 12939 static const String SPACEBAR = "Spacebar";
12940 12940
12941 /** 12941 /**
12942 * The Delete (Del) Key. Note: This key value shall be also used for the key 12942 * The Delete (Del) Key. Note: This key value shall be also used for the key
12943 * labeled 'delete' MacOS keyboards when modified by the 'Fn' key 12943 * labeled 'delete' MacOS keyboards when modified by the 'Fn' key
12944 */ 12944 */
12945 static final String DEL = "Del"; 12945 static const String DEL = "Del";
12946 12946
12947 /** The Combining Grave Accent (Greek Varia, Dead Grave) key */ 12947 /** The Combining Grave Accent (Greek Varia, Dead Grave) key */
12948 static final String DEAD_GRAVE = "DeadGrave"; 12948 static const String DEAD_GRAVE = "DeadGrave";
12949 12949
12950 /** 12950 /**
12951 * The Combining Acute Accent (Stress Mark, Greek Oxia, Tonos, Dead Eacute) 12951 * The Combining Acute Accent (Stress Mark, Greek Oxia, Tonos, Dead Eacute)
12952 * key 12952 * key
12953 */ 12953 */
12954 static final String DEAD_EACUTE = "DeadEacute"; 12954 static const String DEAD_EACUTE = "DeadEacute";
12955 12955
12956 /** The Combining Circumflex Accent (Hat, Dead Circumflex) key */ 12956 /** The Combining Circumflex Accent (Hat, Dead Circumflex) key */
12957 static final String DEAD_CIRCUMFLEX = "DeadCircumflex"; 12957 static const String DEAD_CIRCUMFLEX = "DeadCircumflex";
12958 12958
12959 /** The Combining Tilde (Dead Tilde) key */ 12959 /** The Combining Tilde (Dead Tilde) key */
12960 static final String DEAD_TILDE = "DeadTilde"; 12960 static const String DEAD_TILDE = "DeadTilde";
12961 12961
12962 /** The Combining Macron (Long, Dead Macron) key */ 12962 /** The Combining Macron (Long, Dead Macron) key */
12963 static final String DEAD_MACRON = "DeadMacron"; 12963 static const String DEAD_MACRON = "DeadMacron";
12964 12964
12965 /** The Combining Breve (Short, Dead Breve) key */ 12965 /** The Combining Breve (Short, Dead Breve) key */
12966 static final String DEAD_BREVE = "DeadBreve"; 12966 static const String DEAD_BREVE = "DeadBreve";
12967 12967
12968 /** The Combining Dot Above (Derivative, Dead Above Dot) key */ 12968 /** The Combining Dot Above (Derivative, Dead Above Dot) key */
12969 static final String DEAD_ABOVE_DOT = "DeadAboveDot"; 12969 static const String DEAD_ABOVE_DOT = "DeadAboveDot";
12970 12970
12971 /** 12971 /**
12972 * The Combining Diaeresis (Double Dot Abode, Umlaut, Greek Dialytika, 12972 * The Combining Diaeresis (Double Dot Abode, Umlaut, Greek Dialytika,
12973 * Double Derivative, Dead Diaeresis) key 12973 * Double Derivative, Dead Diaeresis) key
12974 */ 12974 */
12975 static final String DEAD_UMLAUT = "DeadUmlaut"; 12975 static const String DEAD_UMLAUT = "DeadUmlaut";
12976 12976
12977 /** The Combining Ring Above (Dead Above Ring) key */ 12977 /** The Combining Ring Above (Dead Above Ring) key */
12978 static final String DEAD_ABOVE_RING = "DeadAboveRing"; 12978 static const String DEAD_ABOVE_RING = "DeadAboveRing";
12979 12979
12980 /** The Combining Double Acute Accent (Dead Doubleacute) key */ 12980 /** The Combining Double Acute Accent (Dead Doubleacute) key */
12981 static final String DEAD_DOUBLEACUTE = "DeadDoubleacute"; 12981 static const String DEAD_DOUBLEACUTE = "DeadDoubleacute";
12982 12982
12983 /** The Combining Caron (Hacek, V Above, Dead Caron) key */ 12983 /** The Combining Caron (Hacek, V Above, Dead Caron) key */
12984 static final String DEAD_CARON = "DeadCaron"; 12984 static const String DEAD_CARON = "DeadCaron";
12985 12985
12986 /** The Combining Cedilla (Dead Cedilla) key */ 12986 /** The Combining Cedilla (Dead Cedilla) key */
12987 static final String DEAD_CEDILLA = "DeadCedilla"; 12987 static const String DEAD_CEDILLA = "DeadCedilla";
12988 12988
12989 /** The Combining Ogonek (Nasal Hook, Dead Ogonek) key */ 12989 /** The Combining Ogonek (Nasal Hook, Dead Ogonek) key */
12990 static final String DEAD_OGONEK = "DeadOgonek"; 12990 static const String DEAD_OGONEK = "DeadOgonek";
12991 12991
12992 /** 12992 /**
12993 * The Combining Greek Ypogegrammeni (Greek Non-Spacing Iota Below, Iota 12993 * The Combining Greek Ypogegrammeni (Greek Non-Spacing Iota Below, Iota
12994 * Subscript, Dead Iota) key 12994 * Subscript, Dead Iota) key
12995 */ 12995 */
12996 static final String DEAD_IOTA = "DeadIota"; 12996 static const String DEAD_IOTA = "DeadIota";
12997 12997
12998 /** 12998 /**
12999 * The Combining Katakana-Hiragana Voiced Sound Mark (Dead Voiced Sound) key 12999 * The Combining Katakana-Hiragana Voiced Sound Mark (Dead Voiced Sound) key
13000 */ 13000 */
13001 static final String DEAD_VOICED_SOUND = "DeadVoicedSound"; 13001 static const String DEAD_VOICED_SOUND = "DeadVoicedSound";
13002 13002
13003 /** 13003 /**
13004 * The Combining Katakana-Hiragana Semi-Voiced Sound Mark (Dead Semivoiced 13004 * The Combining Katakana-Hiragana Semi-Voiced Sound Mark (Dead Semivoiced
13005 * Sound) key 13005 * Sound) key
13006 */ 13006 */
13007 static final String DEC_SEMIVOICED_SOUND= "DeadSemivoicedSound"; 13007 static const String DEC_SEMIVOICED_SOUND= "DeadSemivoicedSound";
13008 13008
13009 /** 13009 /**
13010 * Key value used when an implementation is unable to identify another key 13010 * Key value used when an implementation is unable to identify another key
13011 * value, due to either hardware, platform, or software constraints 13011 * value, due to either hardware, platform, or software constraints
13012 */ 13012 */
13013 static final String UNIDENTIFIED = "Unidentified"; 13013 static const String UNIDENTIFIED = "Unidentified";
13014 } 13014 }
13015 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 13015 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
13016 // for details. All rights reserved. Use of this source code is governed by a 13016 // for details. All rights reserved. Use of this source code is governed by a
13017 // BSD-style license that can be found in the LICENSE file. 13017 // BSD-style license that can be found in the LICENSE file.
13018 13018
13019 /** 13019 /**
13020 * Contains the set of standard values returned by HTMLDocument.getReadyState. 13020 * Contains the set of standard values returned by HTMLDocument.getReadyState.
13021 */ 13021 */
13022 interface ReadyState { 13022 interface ReadyState {
13023 /** 13023 /**
13024 * Indicates the document is still loading and parsing. 13024 * Indicates the document is still loading and parsing.
13025 */ 13025 */
13026 static final String LOADING = "loading"; 13026 static const String LOADING = "loading";
13027 13027
13028 /** 13028 /**
13029 * Indicates the document is finished parsing but is still loading 13029 * Indicates the document is finished parsing but is still loading
13030 * subresources. 13030 * subresources.
13031 */ 13031 */
13032 static final String INTERACTIVE = "interactive"; 13032 static const String INTERACTIVE = "interactive";
13033 13033
13034 /** 13034 /**
13035 * Indicates the document and all subresources have been loaded. 13035 * Indicates the document and all subresources have been loaded.
13036 */ 13036 */
13037 static final String COMPLETE = "complete"; 13037 static const String COMPLETE = "complete";
13038 } 13038 }
13039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 13039 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13040 // for details. All rights reserved. Use of this source code is governed by a 13040 // for details. All rights reserved. Use of this source code is governed by a
13041 // BSD-style license that can be found in the LICENSE file. 13041 // BSD-style license that can be found in the LICENSE file.
13042 13042
13043 13043
13044 _dummy() { 13044 _dummy() {
13045 throw const NotImplementedException(); 13045 throw const NotImplementedException();
13046 } 13046 }
13047 13047
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
13110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 13110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13111 // for details. All rights reserved. Use of this source code is governed by a 13111 // for details. All rights reserved. Use of this source code is governed by a
13112 // BSD-style license that can be found in the LICENSE file. 13112 // BSD-style license that can be found in the LICENSE file.
13113 13113
13114 Window get window() => _dummy(); 13114 Window get window() => _dummy();
13115 13115
13116 // TODO(vsm): Remove when prefixes are supported. 13116 // TODO(vsm): Remove when prefixes are supported.
13117 Window get dom_window() => _dummy(); 13117 Window get dom_window() => _dummy();
13118 13118
13119 Document get document() => _dummy(); 13119 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/dom/scripts/dartgenerator_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698