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

Side by Side Diff: client/html/frog/html_frog.dart

Issue 9623013: Regenerate the wrapperless DOM again. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
OLDNEW
1 #library('html'); 1 #library('html');
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:html library. 8 // Auto-generated dart:html library.
9 9
10 10
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 _AudioBufferImpl createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR _numberOfFrames, [num sampleRate = null]) native; 314 _AudioBufferImpl createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR _numberOfFrames, [num sampleRate = null]) native;
315 315
316 _AudioBufferSourceNodeImpl createBufferSource() native; 316 _AudioBufferSourceNodeImpl createBufferSource() native;
317 317
318 _AudioChannelMergerImpl createChannelMerger() native; 318 _AudioChannelMergerImpl createChannelMerger() native;
319 319
320 _AudioChannelSplitterImpl createChannelSplitter() native; 320 _AudioChannelSplitterImpl createChannelSplitter() native;
321 321
322 _ConvolverNodeImpl createConvolver() native; 322 _ConvolverNodeImpl createConvolver() native;
323 323
324 _DelayNodeImpl createDelayNode() native; 324 _DelayNodeImpl createDelayNode([num maxDelayTime = null]) native;
325 325
326 _DynamicsCompressorNodeImpl createDynamicsCompressor() native; 326 _DynamicsCompressorNodeImpl createDynamicsCompressor() native;
327 327
328 _AudioGainNodeImpl createGainNode() native; 328 _AudioGainNodeImpl createGainNode() native;
329 329
330 _HighPass2FilterNodeImpl createHighPass2Filter() native; 330 _HighPass2FilterNodeImpl createHighPass2Filter() native;
331 331
332 _JavaScriptAudioNodeImpl createJavaScriptNode(int bufferSize) native; 332 _JavaScriptAudioNodeImpl createJavaScriptNode(int bufferSize) native;
333 333
334 _LowPass2FilterNodeImpl createLowPass2Filter() native; 334 _LowPass2FilterNodeImpl createLowPass2Filter() native;
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 static final int CSS_RGBCOLOR = 25; 797 static final int CSS_RGBCOLOR = 25;
798 798
799 static final int CSS_S = 15; 799 static final int CSS_S = 15;
800 800
801 static final int CSS_STRING = 19; 801 static final int CSS_STRING = 19;
802 802
803 static final int CSS_UNKNOWN = 0; 803 static final int CSS_UNKNOWN = 0;
804 804
805 static final int CSS_URI = 20; 805 static final int CSS_URI = 20;
806 806
807 static final int CSS_VH = 27;
808
809 static final int CSS_VMIN = 28;
810
811 static final int CSS_VW = 26;
812
807 final int primitiveType; 813 final int primitiveType;
808 814
809 _CounterImpl getCounterValue() native; 815 _CounterImpl getCounterValue() native;
810 816
811 num getFloatValue(int unitType) native; 817 num getFloatValue(int unitType) native;
812 818
813 _RGBColorImpl getRGBColorValue() native; 819 _RGBColorImpl getRGBColorValue() native;
814 820
815 _RectImpl getRectValue() native; 821 _RectImpl getRectValue() native;
816 822
(...skipping 3213 matching lines...) Expand 10 before | Expand all | Expand 10 after
4030 class _ClipboardImpl implements Clipboard native "*Clipboard" { 4036 class _ClipboardImpl implements Clipboard native "*Clipboard" {
4031 4037
4032 String dropEffect; 4038 String dropEffect;
4033 4039
4034 String effectAllowed; 4040 String effectAllowed;
4035 4041
4036 final _FileListImpl files; 4042 final _FileListImpl files;
4037 4043
4038 final _DataTransferItemListImpl items; 4044 final _DataTransferItemListImpl items;
4039 4045
4040 final List<String> types; 4046 final List types;
4041 4047
4042 void clearData([String type = null]) native; 4048 void clearData([String type = null]) native;
4043 4049
4044 void getData(String type) native; 4050 String getData(String type) native;
4045 4051
4046 bool setData(String type, String data) native; 4052 bool setData(String type, String data) native;
4047 4053
4048 void setDragImage(_ImageElementImpl image, int x, int y) native; 4054 void setDragImage(_ImageElementImpl image, int x, int y) native;
4049 } 4055 }
4050 4056
4051 class _CloseEventImpl extends _EventImpl implements CloseEvent native "*CloseEve nt" { 4057 class _CloseEventImpl extends _EventImpl implements CloseEvent native "*CloseEve nt" {
4052 4058
4053 final int code; 4059 final int code;
4054 4060
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
4447 String item(int index) native; 4453 String item(int index) native;
4448 4454
4449 void remove(String token) native; 4455 void remove(String token) native;
4450 4456
4451 String toString() native; 4457 String toString() native;
4452 4458
4453 bool toggle(String token) native; 4459 bool toggle(String token) native;
4454 } 4460 }
4455 4461
4456 class _DOMURLImpl implements DOMURL native "*DOMURL" { 4462 class _DOMURLImpl implements DOMURL native "*DOMURL" {
4463
4464 String createObjectURL(var blob_OR_stream) native;
4465
4466 void revokeObjectURL(String url) native;
4457 } 4467 }
4458 4468
4459 class _DataTransferItemImpl implements DataTransferItem native "*DataTransferIte m" { 4469 class _DataTransferItemImpl implements DataTransferItem native "*DataTransferIte m" {
4460 4470
4461 final String kind; 4471 final String kind;
4462 4472
4463 final String type; 4473 final String type;
4464 4474
4465 _BlobImpl getAsFile() native; 4475 _BlobImpl getAsFile() native;
4466 4476
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
4853 final String name; 4863 final String name;
4854 4864
4855 final _NamedNodeMapImpl notations; 4865 final _NamedNodeMapImpl notations;
4856 4866
4857 final String publicId; 4867 final String publicId;
4858 4868
4859 final String systemId; 4869 final String systemId;
4860 } 4870 }
4861 4871
4862 class _DynamicsCompressorNodeImpl extends _AudioNodeImpl implements DynamicsComp ressorNode native "*DynamicsCompressorNode" { 4872 class _DynamicsCompressorNodeImpl extends _AudioNodeImpl implements DynamicsComp ressorNode native "*DynamicsCompressorNode" {
4873
4874 final _AudioParamImpl knee;
4875
4876 final _AudioParamImpl ratio;
4877
4878 final _AudioParamImpl reduction;
4879
4880 final _AudioParamImpl threshold;
4863 } 4881 }
4864 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 4882 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4865 // for details. All rights reserved. Use of this source code is governed by a 4883 // for details. All rights reserved. Use of this source code is governed by a
4866 // BSD-style license that can be found in the LICENSE file. 4884 // BSD-style license that can be found in the LICENSE file.
4867 4885
4868 // TODO(jacobr): use _Lists.dart to remove some of the duplicated 4886 // TODO(jacobr): use _Lists.dart to remove some of the duplicated
4869 // functionality. 4887 // functionality.
4870 class _ChildrenElementList implements ElementList { 4888 class _ChildrenElementList implements ElementList {
4871 // Raw Element. 4889 // Raw Element.
4872 final _ElementImpl _element; 4890 final _ElementImpl _element;
(...skipping 1891 matching lines...) Expand 10 before | Expand all | Expand 10 after
6764 final String keyPath; 6782 final String keyPath;
6765 6783
6766 final bool multiEntry; 6784 final bool multiEntry;
6767 6785
6768 final String name; 6786 final String name;
6769 6787
6770 final _IDBObjectStoreImpl objectStore; 6788 final _IDBObjectStoreImpl objectStore;
6771 6789
6772 final bool unique; 6790 final bool unique;
6773 6791
6774 _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native; 6792 _IDBRequestImpl count([var key_OR_range = null]) native;
6775 6793
6776 _IDBRequestImpl getObject(_IDBKeyImpl key) native; 6794 _IDBRequestImpl getObject(_IDBKeyImpl key) native;
6777 6795
6778 _IDBRequestImpl getKey(_IDBKeyImpl key) native; 6796 _IDBRequestImpl getKey(_IDBKeyImpl key) native;
6779 6797
6780 _IDBRequestImpl openCursor([_IDBKeyRangeImpl range = null, int direction = nul l]) native; 6798 _IDBRequestImpl openCursor([_IDBKeyRangeImpl range = null, int direction = nul l]) native;
6781 6799
6782 _IDBRequestImpl openKeyCursor([_IDBKeyRangeImpl range = null, int direction = null]) native; 6800 _IDBRequestImpl openKeyCursor([_IDBKeyRangeImpl range = null, int direction = null]) native;
6783 } 6801 }
6784 6802
(...skipping 26 matching lines...) Expand all
6811 final String keyPath; 6829 final String keyPath;
6812 6830
6813 final String name; 6831 final String name;
6814 6832
6815 final _IDBTransactionImpl transaction; 6833 final _IDBTransactionImpl transaction;
6816 6834
6817 _IDBRequestImpl add(Dynamic value, [_IDBKeyImpl key = null]) native; 6835 _IDBRequestImpl add(Dynamic value, [_IDBKeyImpl key = null]) native;
6818 6836
6819 _IDBRequestImpl clear() native; 6837 _IDBRequestImpl clear() native;
6820 6838
6821 _IDBRequestImpl count([_IDBKeyRangeImpl range = null]) native; 6839 _IDBRequestImpl count([var key_OR_range = null]) native;
6822 6840
6823 _IDBIndexImpl createIndex(String name, String keyPath) native; 6841 _IDBIndexImpl createIndex(String name, String keyPath) native;
6824 6842
6825 _IDBRequestImpl delete(var key_OR_keyRange) native; 6843 _IDBRequestImpl delete(var key_OR_keyRange) native;
6826 6844
6827 void deleteIndex(String name) native; 6845 void deleteIndex(String name) native;
6828 6846
6829 _IDBRequestImpl getObject(_IDBKeyImpl key) native; 6847 _IDBRequestImpl getObject(_IDBKeyImpl key) native;
6830 6848
6831 _IDBIndexImpl index(String name) native; 6849 _IDBIndexImpl index(String name) native;
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
7973 String httpEquiv; 7991 String httpEquiv;
7974 7992
7975 String name; 7993 String name;
7976 7994
7977 String scheme; 7995 String scheme;
7978 } 7996 }
7979 7997
7980 class _MetadataImpl implements Metadata native "*Metadata" { 7998 class _MetadataImpl implements Metadata native "*Metadata" {
7981 7999
7982 final Date modificationTime; 8000 final Date modificationTime;
8001
8002 final int size;
7983 } 8003 }
7984 8004
7985 class _MeterElementImpl extends _ElementImpl implements MeterElement native "*HT MLMeterElement" { 8005 class _MeterElementImpl extends _ElementImpl implements MeterElement native "*HT MLMeterElement" {
7986 8006
7987 final _FormElementImpl form; 8007 final _FormElementImpl form;
7988 8008
7989 num high; 8009 num high;
7990 8010
7991 final _NodeListImpl labels; 8011 final _NodeListImpl labels;
7992 8012
(...skipping 4678 matching lines...) Expand 10 before | Expand all | Expand 10 after
12671 void setCustomValidity(String error) native; 12691 void setCustomValidity(String error) native;
12672 } 12692 }
12673 12693
12674 class _ShadowElementImpl extends _ElementImpl implements ShadowElement native "* HTMLShadowElement" { 12694 class _ShadowElementImpl extends _ElementImpl implements ShadowElement native "* HTMLShadowElement" {
12675 } 12695 }
12676 12696
12677 class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot native "*ShadowRoot" { 12697 class _ShadowRootImpl extends _DocumentFragmentImpl implements ShadowRoot native "*ShadowRoot" {
12678 12698
12679 final _ElementImpl host; 12699 final _ElementImpl host;
12680 12700
12701 String innerHTML;
12702
12681 _ElementImpl getElementById(String elementId) native; 12703 _ElementImpl getElementById(String elementId) native;
12682 12704
12683 _NodeListImpl getElementsByClassName(String className) native; 12705 _NodeListImpl getElementsByClassName(String className) native;
12684 12706
12685 _NodeListImpl getElementsByTagName(String tagName) native; 12707 _NodeListImpl getElementsByTagName(String tagName) native;
12686 12708
12687 _NodeListImpl getElementsByTagNameNS(String namespaceURI, String localName) na tive; 12709 _NodeListImpl getElementsByTagNameNS(String namespaceURI, String localName) na tive;
12688 } 12710 }
12689 12711
12690 class _SharedWorkerImpl extends _AbstractWorkerImpl implements SharedWorker nati ve "*SharedWorker" { 12712 class _SharedWorkerImpl extends _AbstractWorkerImpl implements SharedWorker nati ve "*SharedWorker" {
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
13130 13152
13131 bool dispatchEvent(_EventImpl evt) native; 13153 bool dispatchEvent(_EventImpl evt) native;
13132 13154
13133 void removeCue(_TextTrackCueImpl cue) native; 13155 void removeCue(_TextTrackCueImpl cue) native;
13134 13156
13135 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 13157 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
13136 } 13158 }
13137 13159
13138 class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" { 13160 class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" {
13139 13161
13140 String alignment; 13162 String align;
13141
13142 String direction;
13143 13163
13144 num endTime; 13164 num endTime;
13145 13165
13146 String id; 13166 String id;
13147 13167
13148 int linePosition; 13168 int line;
13149 13169
13150 EventListener onenter; 13170 EventListener onenter;
13151 13171
13152 EventListener onexit; 13172 EventListener onexit;
13153 13173
13154 bool pauseOnExit; 13174 bool pauseOnExit;
13155 13175
13176 int position;
13177
13156 int size; 13178 int size;
13157 13179
13158 bool snapToLines; 13180 bool snapToLines;
13159 13181
13160 num startTime; 13182 num startTime;
13161 13183
13162 String text; 13184 String text;
13163 13185
13164 int textPosition; 13186 final _TextTrackImpl track;
13165 13187
13166 final _TextTrackImpl track; 13188 String vertical;
13167 13189
13168 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 13190 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
13169 13191
13170 bool dispatchEvent(_EventImpl evt) native; 13192 bool dispatchEvent(_EventImpl evt) native;
13171 13193
13172 _DocumentFragmentImpl getCueAsHTML() native; 13194 _DocumentFragmentImpl getCueAsHTML() native;
13173 13195
13174 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 13196 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
13175 } 13197 }
13176 13198
(...skipping 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after
14731 } 14753 }
14732 14754
14733 class _WebKitCSSRegionRuleImpl extends _CSSRuleImpl implements WebKitCSSRegionRu le native "*WebKitCSSRegionRule" { 14755 class _WebKitCSSRegionRuleImpl extends _CSSRuleImpl implements WebKitCSSRegionRu le native "*WebKitCSSRegionRule" {
14734 14756
14735 final _CSSRuleListImpl cssRules; 14757 final _CSSRuleListImpl cssRules;
14736 } 14758 }
14737 14759
14738 class _WebKitNamedFlowImpl implements WebKitNamedFlow native "*WebKitNamedFlow" { 14760 class _WebKitNamedFlowImpl implements WebKitNamedFlow native "*WebKitNamedFlow" {
14739 14761
14740 final bool overflow; 14762 final bool overflow;
14763
14764 _NodeListImpl getRegionsByContentNode(_NodeImpl contentNode) native;
14741 } 14765 }
14742 14766
14743 class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebS ocket" { 14767 class _WebSocketImpl extends _EventTargetImpl implements WebSocket native "*WebS ocket" {
14744 14768
14745 static final int CLOSED = 3; 14769 static final int CLOSED = 3;
14746 14770
14747 static final int CLOSING = 2; 14771 static final int CLOSING = 2;
14748 14772
14749 static final int CONNECTING = 0; 14773 static final int CONNECTING = 0;
14750 14774
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
16040 AudioBuffer createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_numb erOfFrames, [num sampleRate]); 16064 AudioBuffer createBuffer(var buffer_OR_numberOfChannels, var mixToMono_OR_numb erOfFrames, [num sampleRate]);
16041 16065
16042 AudioBufferSourceNode createBufferSource(); 16066 AudioBufferSourceNode createBufferSource();
16043 16067
16044 AudioChannelMerger createChannelMerger(); 16068 AudioChannelMerger createChannelMerger();
16045 16069
16046 AudioChannelSplitter createChannelSplitter(); 16070 AudioChannelSplitter createChannelSplitter();
16047 16071
16048 ConvolverNode createConvolver(); 16072 ConvolverNode createConvolver();
16049 16073
16050 DelayNode createDelayNode(); 16074 DelayNode createDelayNode([num maxDelayTime]);
16051 16075
16052 DynamicsCompressorNode createDynamicsCompressor(); 16076 DynamicsCompressorNode createDynamicsCompressor();
16053 16077
16054 AudioGainNode createGainNode(); 16078 AudioGainNode createGainNode();
16055 16079
16056 HighPass2FilterNode createHighPass2Filter(); 16080 HighPass2FilterNode createHighPass2Filter();
16057 16081
16058 JavaScriptAudioNode createJavaScriptNode(int bufferSize); 16082 JavaScriptAudioNode createJavaScriptNode(int bufferSize);
16059 16083
16060 LowPass2FilterNode createLowPass2Filter(); 16084 LowPass2FilterNode createLowPass2Filter();
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
16677 static final int CSS_RGBCOLOR = 25; 16701 static final int CSS_RGBCOLOR = 25;
16678 16702
16679 static final int CSS_S = 15; 16703 static final int CSS_S = 15;
16680 16704
16681 static final int CSS_STRING = 19; 16705 static final int CSS_STRING = 19;
16682 16706
16683 static final int CSS_UNKNOWN = 0; 16707 static final int CSS_UNKNOWN = 0;
16684 16708
16685 static final int CSS_URI = 20; 16709 static final int CSS_URI = 20;
16686 16710
16711 static final int CSS_VH = 27;
16712
16713 static final int CSS_VMIN = 28;
16714
16715 static final int CSS_VW = 26;
16716
16687 final int primitiveType; 16717 final int primitiveType;
16688 16718
16689 Counter getCounterValue(); 16719 Counter getCounterValue();
16690 16720
16691 num getFloatValue(int unitType); 16721 num getFloatValue(int unitType);
16692 16722
16693 RGBColor getRGBColorValue(); 16723 RGBColor getRGBColorValue();
16694 16724
16695 Rect getRectValue(); 16725 Rect getRectValue();
16696 16726
(...skipping 2300 matching lines...) Expand 10 before | Expand all | Expand 10 after
18997 interface Clipboard { 19027 interface Clipboard {
18998 19028
18999 String dropEffect; 19029 String dropEffect;
19000 19030
19001 String effectAllowed; 19031 String effectAllowed;
19002 19032
19003 final FileList files; 19033 final FileList files;
19004 19034
19005 final DataTransferItemList items; 19035 final DataTransferItemList items;
19006 19036
19007 final List<String> types; 19037 final List types;
19008 19038
19009 void clearData([String type]); 19039 void clearData([String type]);
19010 19040
19011 void getData(String type); 19041 String getData(String type);
19012 19042
19013 bool setData(String type, String data); 19043 bool setData(String type, String data);
19014 19044
19015 void setDragImage(ImageElement image, int x, int y); 19045 void setDragImage(ImageElement image, int x, int y);
19016 } 19046 }
19017 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19047 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19018 // for details. All rights reserved. Use of this source code is governed by a 19048 // for details. All rights reserved. Use of this source code is governed by a
19019 // BSD-style license that can be found in the LICENSE file. 19049 // BSD-style license that can be found in the LICENSE file.
19020 19050
19021 // WARNING: Do not edit - generated code. 19051 // WARNING: Do not edit - generated code.
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
19533 } 19563 }
19534 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19564 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19535 // for details. All rights reserved. Use of this source code is governed by a 19565 // for details. All rights reserved. Use of this source code is governed by a
19536 // BSD-style license that can be found in the LICENSE file. 19566 // BSD-style license that can be found in the LICENSE file.
19537 19567
19538 // WARNING: Do not edit - generated code. 19568 // WARNING: Do not edit - generated code.
19539 19569
19540 interface DOMURL default _DOMURLFactoryProvider { 19570 interface DOMURL default _DOMURLFactoryProvider {
19541 19571
19542 DOMURL(); 19572 DOMURL();
19573
19574 String createObjectURL(var blob_OR_stream);
19575
19576 void revokeObjectURL(String url);
19543 } 19577 }
19544 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 19578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
19545 // for details. All rights reserved. Use of this source code is governed by a 19579 // for details. All rights reserved. Use of this source code is governed by a
19546 // BSD-style license that can be found in the LICENSE file. 19580 // BSD-style license that can be found in the LICENSE file.
19547 19581
19548 // WARNING: Do not edit - generated code. 19582 // WARNING: Do not edit - generated code.
19549 19583
19550 interface DataTransferItem { 19584 interface DataTransferItem {
19551 19585
19552 final String kind; 19586 final String kind;
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
20003 20037
20004 final String systemId; 20038 final String systemId;
20005 } 20039 }
20006 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 20040 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20007 // for details. All rights reserved. Use of this source code is governed by a 20041 // for details. All rights reserved. Use of this source code is governed by a
20008 // BSD-style license that can be found in the LICENSE file. 20042 // BSD-style license that can be found in the LICENSE file.
20009 20043
20010 // WARNING: Do not edit - generated code. 20044 // WARNING: Do not edit - generated code.
20011 20045
20012 interface DynamicsCompressorNode extends AudioNode { 20046 interface DynamicsCompressorNode extends AudioNode {
20047
20048 final AudioParam knee;
20049
20050 final AudioParam ratio;
20051
20052 final AudioParam reduction;
20053
20054 final AudioParam threshold;
20013 } 20055 }
20014 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 20056 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
20015 // for details. All rights reserved. Use of this source code is governed by a 20057 // for details. All rights reserved. Use of this source code is governed by a
20016 // BSD-style license that can be found in the LICENSE file. 20058 // BSD-style license that can be found in the LICENSE file.
20017 20059
20018 // WARNING: Do not edit - generated code. 20060 // WARNING: Do not edit - generated code.
20019 20061
20020 /** 20062 /**
20021 * Provides a Map abstraction on top of data-* attributes, similar to the 20063 * Provides a Map abstraction on top of data-* attributes, similar to the
20022 * dataSet in the old DOM. 20064 * dataSet in the old DOM.
(...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after
21694 final String keyPath; 21736 final String keyPath;
21695 21737
21696 final bool multiEntry; 21738 final bool multiEntry;
21697 21739
21698 final String name; 21740 final String name;
21699 21741
21700 final IDBObjectStore objectStore; 21742 final IDBObjectStore objectStore;
21701 21743
21702 final bool unique; 21744 final bool unique;
21703 21745
21704 IDBRequest count([IDBKeyRange range]); 21746 IDBRequest count([var key_OR_range]);
21705 21747
21706 IDBRequest getObject(IDBKey key); 21748 IDBRequest getObject(IDBKey key);
21707 21749
21708 IDBRequest getKey(IDBKey key); 21750 IDBRequest getKey(IDBKey key);
21709 21751
21710 IDBRequest openCursor([IDBKeyRange range, int direction]); 21752 IDBRequest openCursor([IDBKeyRange range, int direction]);
21711 21753
21712 IDBRequest openKeyCursor([IDBKeyRange range, int direction]); 21754 IDBRequest openKeyCursor([IDBKeyRange range, int direction]);
21713 } 21755 }
21714 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 21756 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
21756 final String keyPath; 21798 final String keyPath;
21757 21799
21758 final String name; 21800 final String name;
21759 21801
21760 final IDBTransaction transaction; 21802 final IDBTransaction transaction;
21761 21803
21762 IDBRequest add(Dynamic value, [IDBKey key]); 21804 IDBRequest add(Dynamic value, [IDBKey key]);
21763 21805
21764 IDBRequest clear(); 21806 IDBRequest clear();
21765 21807
21766 IDBRequest count([IDBKeyRange range]); 21808 IDBRequest count([var key_OR_range]);
21767 21809
21768 IDBIndex createIndex(String name, String keyPath); 21810 IDBIndex createIndex(String name, String keyPath);
21769 21811
21770 IDBRequest delete(var key_OR_keyRange); 21812 IDBRequest delete(var key_OR_keyRange);
21771 21813
21772 void deleteIndex(String name); 21814 void deleteIndex(String name);
21773 21815
21774 IDBRequest getObject(IDBKey key); 21816 IDBRequest getObject(IDBKey key);
21775 21817
21776 IDBIndex index(String name); 21818 IDBIndex index(String name);
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
22841 } 22883 }
22842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 22884 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
22843 // for details. All rights reserved. Use of this source code is governed by a 22885 // for details. All rights reserved. Use of this source code is governed by a
22844 // BSD-style license that can be found in the LICENSE file. 22886 // BSD-style license that can be found in the LICENSE file.
22845 22887
22846 // WARNING: Do not edit - generated code. 22888 // WARNING: Do not edit - generated code.
22847 22889
22848 interface Metadata { 22890 interface Metadata {
22849 22891
22850 final Date modificationTime; 22892 final Date modificationTime;
22893
22894 final int size;
22851 } 22895 }
22852 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 22896 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
22853 // for details. All rights reserved. Use of this source code is governed by a 22897 // for details. All rights reserved. Use of this source code is governed by a
22854 // BSD-style license that can be found in the LICENSE file. 22898 // BSD-style license that can be found in the LICENSE file.
22855 22899
22856 // WARNING: Do not edit - generated code. 22900 // WARNING: Do not edit - generated code.
22857 22901
22858 typedef bool MetadataCallback(Metadata metadata); 22902 typedef bool MetadataCallback(Metadata metadata);
22859 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 22903 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
22860 // for details. All rights reserved. Use of this source code is governed by a 22904 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 4055 matching lines...) Expand 10 before | Expand all | Expand 10 after
26916 // BSD-style license that can be found in the LICENSE file. 26960 // BSD-style license that can be found in the LICENSE file.
26917 26961
26918 // WARNING: Do not edit - generated code. 26962 // WARNING: Do not edit - generated code.
26919 26963
26920 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider { 26964 interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider {
26921 26965
26922 ShadowRoot(Element host); 26966 ShadowRoot(Element host);
26923 26967
26924 final Element host; 26968 final Element host;
26925 26969
26970 String innerHTML;
26971
26926 Element getElementById(String elementId); 26972 Element getElementById(String elementId);
26927 26973
26928 NodeList getElementsByClassName(String className); 26974 NodeList getElementsByClassName(String className);
26929 26975
26930 NodeList getElementsByTagName(String tagName); 26976 NodeList getElementsByTagName(String tagName);
26931 26977
26932 NodeList getElementsByTagNameNS(String namespaceURI, String localName); 26978 NodeList getElementsByTagNameNS(String namespaceURI, String localName);
26933 } 26979 }
26934 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 26980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
26935 // for details. All rights reserved. Use of this source code is governed by a 26981 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
27473 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 27519 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
27474 // for details. All rights reserved. Use of this source code is governed by a 27520 // for details. All rights reserved. Use of this source code is governed by a
27475 // BSD-style license that can be found in the LICENSE file. 27521 // BSD-style license that can be found in the LICENSE file.
27476 27522
27477 // WARNING: Do not edit - generated code. 27523 // WARNING: Do not edit - generated code.
27478 27524
27479 interface TextTrackCue default _TextTrackCueFactoryProvider { 27525 interface TextTrackCue default _TextTrackCueFactoryProvider {
27480 27526
27481 TextTrackCue(String id, num startTime, num endTime, String text, [String setti ngs, bool pauseOnExit]); 27527 TextTrackCue(String id, num startTime, num endTime, String text, [String setti ngs, bool pauseOnExit]);
27482 27528
27483 String alignment; 27529 String align;
27484
27485 String direction;
27486 27530
27487 num endTime; 27531 num endTime;
27488 27532
27489 String id; 27533 String id;
27490 27534
27491 int linePosition; 27535 int line;
27492 27536
27493 EventListener onenter; 27537 EventListener onenter;
27494 27538
27495 EventListener onexit; 27539 EventListener onexit;
27496 27540
27497 bool pauseOnExit; 27541 bool pauseOnExit;
27498 27542
27543 int position;
27544
27499 int size; 27545 int size;
27500 27546
27501 bool snapToLines; 27547 bool snapToLines;
27502 27548
27503 num startTime; 27549 num startTime;
27504 27550
27505 String text; 27551 String text;
27506 27552
27507 int textPosition; 27553 final TextTrack track;
27508 27554
27509 final TextTrack track; 27555 String vertical;
27510 27556
27511 void addEventListener(String type, EventListener listener, [bool useCapture]); 27557 void addEventListener(String type, EventListener listener, [bool useCapture]);
27512 27558
27513 bool dispatchEvent(Event evt); 27559 bool dispatchEvent(Event evt);
27514 27560
27515 DocumentFragment getCueAsHTML(); 27561 DocumentFragment getCueAsHTML();
27516 27562
27517 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 27563 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
27518 } 27564 }
27519 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 27565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
28979 } 29025 }
28980 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 29026 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
28981 // for details. All rights reserved. Use of this source code is governed by a 29027 // for details. All rights reserved. Use of this source code is governed by a
28982 // BSD-style license that can be found in the LICENSE file. 29028 // BSD-style license that can be found in the LICENSE file.
28983 29029
28984 // WARNING: Do not edit - generated code. 29030 // WARNING: Do not edit - generated code.
28985 29031
28986 interface WebKitNamedFlow { 29032 interface WebKitNamedFlow {
28987 29033
28988 final bool overflow; 29034 final bool overflow;
29035
29036 NodeList getRegionsByContentNode(Node contentNode);
28989 } 29037 }
28990 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 29038 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
28991 // for details. All rights reserved. Use of this source code is governed by a 29039 // for details. All rights reserved. Use of this source code is governed by a
28992 // BSD-style license that can be found in the LICENSE file. 29040 // BSD-style license that can be found in the LICENSE file.
28993 29041
28994 // WARNING: Do not edit - generated code. 29042 // WARNING: Do not edit - generated code.
28995 29043
28996 interface WebSocket extends EventTarget { 29044 interface WebSocket extends EventTarget {
28997 29045
28998 static final int CLOSED = 3; 29046 static final int CLOSED = 3;
(...skipping 1923 matching lines...) Expand 10 before | Expand all | Expand 10 after
30922 if (length < 0) throw new IllegalArgumentException('length'); 30970 if (length < 0) throw new IllegalArgumentException('length');
30923 if (start < 0) throw new IndexOutOfRangeException(start); 30971 if (start < 0) throw new IndexOutOfRangeException(start);
30924 int end = start + length; 30972 int end = start + length;
30925 if (end > a.length) throw new IndexOutOfRangeException(end); 30973 if (end > a.length) throw new IndexOutOfRangeException(end);
30926 for (int i = start; i < end; i++) { 30974 for (int i = start; i < end; i++) {
30927 accumulator.add(a[i]); 30975 accumulator.add(a[i]);
30928 } 30976 }
30929 return accumulator; 30977 return accumulator;
30930 } 30978 }
30931 } 30979 }
OLDNEW
« no previous file with comments | « client/html/dartium/html_dartium.dart ('k') | client/html/generated/html/dartium/AudioContext.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698