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

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

Issue 10358016: Roll IDL to multivm@477 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('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('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2011, 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. 8 // Auto-generated Dart DOM library.
9 9
10 10
(...skipping 3522 matching lines...) Expand 10 before | Expand all | Expand 10 after
3533 void pause() native; 3533 void pause() native;
3534 3534
3535 void play() native; 3535 void play() native;
3536 3536
3537 void webkitAddKey(String keySystem, _Uint8ArrayJs key, [_Uint8ArrayJs initData = null, String sessionId = null]) native; 3537 void webkitAddKey(String keySystem, _Uint8ArrayJs key, [_Uint8ArrayJs initData = null, String sessionId = null]) native;
3538 3538
3539 void webkitCancelKeyRequest(String keySystem, String sessionId) native; 3539 void webkitCancelKeyRequest(String keySystem, String sessionId) native;
3540 3540
3541 void webkitGenerateKeyRequest(String keySystem, [_Uint8ArrayJs initData = null ]) native; 3541 void webkitGenerateKeyRequest(String keySystem, [_Uint8ArrayJs initData = null ]) native;
3542 3542
3543 void webkitSourceAddId(String id, String type) native;
3544
3545 void webkitSourceAppend(_Uint8ArrayJs data) native; 3543 void webkitSourceAppend(_Uint8ArrayJs data) native;
3546 3544
3547 void webkitSourceEndOfStream(int status) native; 3545 void webkitSourceEndOfStream(int status) native;
3548
3549 void webkitSourceRemoveId(String id) native;
3550 } 3546 }
3551 3547
3552 class _HTMLMenuElementJs extends _HTMLElementJs implements HTMLMenuElement nativ e "*HTMLMenuElement" { 3548 class _HTMLMenuElementJs extends _HTMLElementJs implements HTMLMenuElement nativ e "*HTMLMenuElement" {
3553 3549
3554 bool compact; 3550 bool compact;
3555 } 3551 }
3556 3552
3557 class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement nativ e "*HTMLMetaElement" { 3553 class _HTMLMetaElementJs extends _HTMLElementJs implements HTMLMetaElement nativ e "*HTMLMetaElement" {
3558 3554
3559 String content; 3555 String content;
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
3930 final _HTMLCollectionJs tBodies; 3926 final _HTMLCollectionJs tBodies;
3931 3927
3932 _HTMLTableSectionElementJs tFoot; 3928 _HTMLTableSectionElementJs tFoot;
3933 3929
3934 _HTMLTableSectionElementJs tHead; 3930 _HTMLTableSectionElementJs tHead;
3935 3931
3936 String width; 3932 String width;
3937 3933
3938 _HTMLElementJs createCaption() native; 3934 _HTMLElementJs createCaption() native;
3939 3935
3936 _HTMLElementJs createTBody() native;
3937
3940 _HTMLElementJs createTFoot() native; 3938 _HTMLElementJs createTFoot() native;
3941 3939
3942 _HTMLElementJs createTHead() native; 3940 _HTMLElementJs createTHead() native;
3943 3941
3944 void deleteCaption() native; 3942 void deleteCaption() native;
3945 3943
3946 void deleteRow(int index) native; 3944 void deleteRow(int index) native;
3947 3945
3948 void deleteTFoot() native; 3946 void deleteTFoot() native;
3949 3947
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
4159 static final int PREV_NO_DUPLICATE = 3; 4157 static final int PREV_NO_DUPLICATE = 3;
4160 4158
4161 final int direction; 4159 final int direction;
4162 4160
4163 final key; 4161 final key;
4164 4162
4165 final primaryKey; 4163 final primaryKey;
4166 4164
4167 final source; 4165 final source;
4168 4166
4167 void advance(int count) native;
4168
4169 void continueFunction([key = null]) native ''' 4169 void continueFunction([key = null]) native '''
4170 if (key == null) return this['continue'](); 4170 if (key == null) return this['continue']();
4171 return this['continue'](key); 4171 return this['continue'](key);
4172 '''; 4172 ''';
4173 4173
4174 _IDBRequestJs delete() native; 4174 _IDBRequestJs delete() native;
4175 4175
4176 _IDBRequestJs update(value) native; 4176 _IDBRequestJs update(value) native;
4177 } 4177 }
4178 4178
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
4265 final _IDBObjectStoreJs objectStore; 4265 final _IDBObjectStoreJs objectStore;
4266 4266
4267 final bool unique; 4267 final bool unique;
4268 4268
4269 _IDBRequestJs count([key_OR_range = null]) native; 4269 _IDBRequestJs count([key_OR_range = null]) native;
4270 4270
4271 _IDBRequestJs get(key) native; 4271 _IDBRequestJs get(key) native;
4272 4272
4273 _IDBRequestJs getKey(key) native; 4273 _IDBRequestJs getKey(key) native;
4274 4274
4275 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native; 4275 _IDBRequestJs openCursor([key_OR_range = null, int direction = null]) native;
4276 4276
4277 _IDBRequestJs openKeyCursor([_IDBKeyRangeJs range = null, int direction = null ]) native; 4277 _IDBRequestJs openKeyCursor([key_OR_range = null, int direction = null]) nativ e;
4278 } 4278 }
4279 4279
4280 class _IDBKeyJs extends _DOMTypeJs implements IDBKey native "*IDBKey" { 4280 class _IDBKeyJs extends _DOMTypeJs implements IDBKey native "*IDBKey" {
4281 } 4281 }
4282 4282
4283 class _IDBKeyRangeJs extends _DOMTypeJs implements IDBKeyRange native "*IDBKeyRa nge" { 4283 class _IDBKeyRangeJs extends _DOMTypeJs implements IDBKeyRange native "*IDBKeyRa nge" {
4284 4284
4285 final lower; 4285 final lower;
4286 4286
4287 final bool lowerOpen; 4287 final bool lowerOpen;
(...skipping 22 matching lines...) Expand all
4310 _IDBIndexJs createIndex(String name, String keyPath, [Map options = null]) nat ive; 4310 _IDBIndexJs createIndex(String name, String keyPath, [Map options = null]) nat ive;
4311 4311
4312 _IDBRequestJs delete(key_OR_keyRange) native; 4312 _IDBRequestJs delete(key_OR_keyRange) native;
4313 4313
4314 void deleteIndex(String name) native; 4314 void deleteIndex(String name) native;
4315 4315
4316 _IDBRequestJs getObject(key) native 'get'; 4316 _IDBRequestJs getObject(key) native 'get';
4317 4317
4318 _IDBIndexJs index(String name) native; 4318 _IDBIndexJs index(String name) native;
4319 4319
4320 _IDBRequestJs openCursor([_IDBKeyRangeJs range = null, int direction = null]) native; 4320 _IDBRequestJs openCursor([key_OR_range = null, int direction = null]) native;
4321 4321
4322 _IDBRequestJs put(value, [key = null]) native; 4322 _IDBRequestJs put(value, [key = null]) native;
4323 } 4323 }
4324 4324
4325 class _IDBRequestJs extends _EventTargetJs implements IDBRequest native "*IDBReq uest" { 4325 class _IDBRequestJs extends _EventTargetJs implements IDBRequest native "*IDBReq uest" {
4326 4326
4327 static final int DONE = 2; 4327 static final int DONE = 2;
4328 4328
4329 static final int LOADING = 1; 4329 static final int LOADING = 1;
4330 4330
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
5304 final _BatteryManagerJs webkitBattery; 5304 final _BatteryManagerJs webkitBattery;
5305 5305
5306 final _PointerLockJs webkitPointer; 5306 final _PointerLockJs webkitPointer;
5307 5307
5308 void getStorageUpdates() native; 5308 void getStorageUpdates() native;
5309 5309
5310 bool javaEnabled() native; 5310 bool javaEnabled() native;
5311 5311
5312 void registerProtocolHandler(String scheme, String url, String title) native; 5312 void registerProtocolHandler(String scheme, String url, String title) native;
5313 5313
5314 void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback succ essCallback, [NavigatorUserMediaErrorCallback errorCallback = null]) native; 5314 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback = null]) native;
5315 } 5315 }
5316 5316
5317 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi aError native "*NavigatorUserMediaError" { 5317 class _NavigatorUserMediaErrorJs extends _DOMTypeJs implements NavigatorUserMedi aError native "*NavigatorUserMediaError" {
5318 5318
5319 static final int PERMISSION_DENIED = 1; 5319 static final int PERMISSION_DENIED = 1;
5320 5320
5321 final int code; 5321 final int code;
5322 } 5322 }
5323 5323
5324 class _NodeJs extends _EventTargetJs implements Node native "*Node" { 5324 class _NodeJs extends _EventTargetJs implements Node native "*Node" {
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
5772 void startIce([String iceOptions = null]) native; 5772 void startIce([String iceOptions = null]) native;
5773 } 5773 }
5774 5774
5775 class _PerformanceJs extends _DOMTypeJs implements Performance native "*Performa nce" { 5775 class _PerformanceJs extends _DOMTypeJs implements Performance native "*Performa nce" {
5776 5776
5777 final _MemoryInfoJs memory; 5777 final _MemoryInfoJs memory;
5778 5778
5779 final _PerformanceNavigationJs navigation; 5779 final _PerformanceNavigationJs navigation;
5780 5780
5781 final _PerformanceTimingJs timing; 5781 final _PerformanceTimingJs timing;
5782
5783 num webkitNow() native;
5782 } 5784 }
5783 5785
5784 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati on native "*PerformanceNavigation" { 5786 class _PerformanceNavigationJs extends _DOMTypeJs implements PerformanceNavigati on native "*PerformanceNavigation" {
5785 5787
5786 static final int TYPE_BACK_FORWARD = 2; 5788 static final int TYPE_BACK_FORWARD = 2;
5787 5789
5788 static final int TYPE_NAVIGATE = 0; 5790 static final int TYPE_NAVIGATE = 0;
5789 5791
5790 static final int TYPE_RELOAD = 1; 5792 static final int TYPE_RELOAD = 1;
5791 5793
(...skipping 5039 matching lines...) Expand 10 before | Expand all | Expand 10 after
10831 static final int SAMPLE_COVERAGE = 0x80A0; 10833 static final int SAMPLE_COVERAGE = 0x80A0;
10832 10834
10833 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; 10835 static final int SAMPLE_COVERAGE_INVERT = 0x80AB;
10834 10836
10835 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; 10837 static final int SAMPLE_COVERAGE_VALUE = 0x80AA;
10836 10838
10837 static final int SCISSOR_BOX = 0x0C10; 10839 static final int SCISSOR_BOX = 0x0C10;
10838 10840
10839 static final int SCISSOR_TEST = 0x0C11; 10841 static final int SCISSOR_TEST = 0x0C11;
10840 10842
10841 static final int SHADER_COMPILER = 0x8DFA;
10842
10843 static final int SHADER_TYPE = 0x8B4F; 10843 static final int SHADER_TYPE = 0x8B4F;
10844 10844
10845 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; 10845 static final int SHADING_LANGUAGE_VERSION = 0x8B8C;
10846 10846
10847 static final int SHORT = 0x1402; 10847 static final int SHORT = 0x1402;
10848 10848
10849 static final int SRC_ALPHA = 0x0302; 10849 static final int SRC_ALPHA = 0x0302;
10850 10850
10851 static final int SRC_ALPHA_SATURATE = 0x0308; 10851 static final int SRC_ALPHA_SATURATE = 0x0308;
10852 10852
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
11388 final num elapsedTime; 11388 final num elapsedTime;
11389 } 11389 }
11390 11390
11391 class _WebKitAnimationListJs extends _DOMTypeJs implements WebKitAnimationList n ative "*WebKitAnimationList" { 11391 class _WebKitAnimationListJs extends _DOMTypeJs implements WebKitAnimationList n ative "*WebKitAnimationList" {
11392 11392
11393 final int length; 11393 final int length;
11394 11394
11395 _WebKitAnimationJs item(int index) native; 11395 _WebKitAnimationJs item(int index) native;
11396 } 11396 }
11397 11397
11398 class _WebKitBlobBuilderJs extends _DOMTypeJs implements WebKitBlobBuilder nativ e "*WebKitBlobBuilder" {
11399
11400 void append(arrayBuffer_OR_blob_OR_value, [String endings = null]) native;
11401
11402 _BlobJs getBlob([String contentType = null]) native;
11403 }
11404
11405 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter Value native "*WebKitCSSFilterValue" { 11398 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter Value native "*WebKitCSSFilterValue" {
11406 11399
11407 static final int CSS_FILTER_BLUR = 10; 11400 static final int CSS_FILTER_BLUR = 10;
11408 11401
11409 static final int CSS_FILTER_BRIGHTNESS = 8; 11402 static final int CSS_FILTER_BRIGHTNESS = 8;
11410 11403
11411 static final int CSS_FILTER_CONTRAST = 9; 11404 static final int CSS_FILTER_CONTRAST = 9;
11412 11405
11413 static final int CSS_FILTER_CUSTOM = 12; 11406 static final int CSS_FILTER_CUSTOM = 12;
11414 11407
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
12132 return new TextTrackCue(id, startTime, endTime, text); 12125 return new TextTrackCue(id, startTime, endTime, text);
12133 if (pauseOnExit == null) 12126 if (pauseOnExit == null)
12134 return new TextTrackCue(id, startTime, endTime, text, settings); 12127 return new TextTrackCue(id, startTime, endTime, text, settings);
12135 return new TextTrackCue(id, startTime, endTime, text, settings, pauseOnExit); 12128 return new TextTrackCue(id, startTime, endTime, text, settings, pauseOnExit);
12136 '''; 12129 ''';
12137 } 12130 }
12138 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12131 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12139 // for details. All rights reserved. Use of this source code is governed by a 12132 // for details. All rights reserved. Use of this source code is governed by a
12140 // BSD-style license that can be found in the LICENSE file. 12133 // BSD-style license that can be found in the LICENSE file.
12141 12134
12142 class _WebKitBlobBuilderFactoryProvider {
12143 factory WebKitBlobBuilder() native
12144 '''return new WebKitBlobBuilder();''';
12145 }
12146 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12147 // for details. All rights reserved. Use of this source code is governed by a
12148 // BSD-style license that can be found in the LICENSE file.
12149
12150 class _WebKitCSSMatrixFactoryProvider { 12135 class _WebKitCSSMatrixFactoryProvider {
12151 factory WebKitCSSMatrix([String cssValue = null]) native 12136 factory WebKitCSSMatrix([String cssValue = null]) native
12152 ''' 12137 '''
12153 if (cssValue == null) return new WebKitCSSMatrix(); 12138 if (cssValue == null) return new WebKitCSSMatrix();
12154 return new WebKitCSSMatrix(cssValue); 12139 return new WebKitCSSMatrix(cssValue);
12155 '''; 12140 ''';
12156 } 12141 }
12157 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12142 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12158 // for details. All rights reserved. Use of this source code is governed by a 12143 // for details. All rights reserved. Use of this source code is governed by a
12159 // BSD-style license that can be found in the LICENSE file. 12144 // BSD-style license that can be found in the LICENSE file.
(...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after
16233 void pause(); 16218 void pause();
16234 16219
16235 void play(); 16220 void play();
16236 16221
16237 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]); 16222 void webkitAddKey(String keySystem, Uint8Array key, [Uint8Array initData, Stri ng sessionId]);
16238 16223
16239 void webkitCancelKeyRequest(String keySystem, String sessionId); 16224 void webkitCancelKeyRequest(String keySystem, String sessionId);
16240 16225
16241 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]); 16226 void webkitGenerateKeyRequest(String keySystem, [Uint8Array initData]);
16242 16227
16243 void webkitSourceAddId(String id, String type);
16244
16245 void webkitSourceAppend(Uint8Array data); 16228 void webkitSourceAppend(Uint8Array data);
16246 16229
16247 void webkitSourceEndOfStream(int status); 16230 void webkitSourceEndOfStream(int status);
16248
16249 void webkitSourceRemoveId(String id);
16250 } 16231 }
16251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 16232 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
16252 // for details. All rights reserved. Use of this source code is governed by a 16233 // for details. All rights reserved. Use of this source code is governed by a
16253 // BSD-style license that can be found in the LICENSE file. 16234 // BSD-style license that can be found in the LICENSE file.
16254 16235
16255 // WARNING: Do not edit - generated code. 16236 // WARNING: Do not edit - generated code.
16256 16237
16257 interface HTMLMenuElement extends HTMLElement { 16238 interface HTMLMenuElement extends HTMLElement {
16258 16239
16259 bool compact; 16240 bool compact;
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
16755 final HTMLCollection tBodies; 16736 final HTMLCollection tBodies;
16756 16737
16757 HTMLTableSectionElement tFoot; 16738 HTMLTableSectionElement tFoot;
16758 16739
16759 HTMLTableSectionElement tHead; 16740 HTMLTableSectionElement tHead;
16760 16741
16761 String width; 16742 String width;
16762 16743
16763 HTMLElement createCaption(); 16744 HTMLElement createCaption();
16764 16745
16746 HTMLElement createTBody();
16747
16765 HTMLElement createTFoot(); 16748 HTMLElement createTFoot();
16766 16749
16767 HTMLElement createTHead(); 16750 HTMLElement createTHead();
16768 16751
16769 void deleteCaption(); 16752 void deleteCaption();
16770 16753
16771 void deleteRow(int index); 16754 void deleteRow(int index);
16772 16755
16773 void deleteTFoot(); 16756 void deleteTFoot();
16774 16757
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
17043 static final int PREV_NO_DUPLICATE = 3; 17026 static final int PREV_NO_DUPLICATE = 3;
17044 17027
17045 final int direction; 17028 final int direction;
17046 17029
17047 final /*IDBKey*/ key; 17030 final /*IDBKey*/ key;
17048 17031
17049 final /*IDBKey*/ primaryKey; 17032 final /*IDBKey*/ primaryKey;
17050 17033
17051 final /*IDBAny*/ source; 17034 final /*IDBAny*/ source;
17052 17035
17036 void advance(int count);
17037
17053 void continueFunction([/*IDBKey*/ key]); 17038 void continueFunction([/*IDBKey*/ key]);
17054 17039
17055 IDBRequest delete(); 17040 IDBRequest delete();
17056 17041
17057 IDBRequest update(/*SerializedScriptValue*/ value); 17042 IDBRequest update(/*SerializedScriptValue*/ value);
17058 } 17043 }
17059 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17044 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17060 // for details. All rights reserved. Use of this source code is governed by a 17045 // for details. All rights reserved. Use of this source code is governed by a
17061 // BSD-style license that can be found in the LICENSE file. 17046 // BSD-style license that can be found in the LICENSE file.
17062 17047
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
17171 final IDBObjectStore objectStore; 17156 final IDBObjectStore objectStore;
17172 17157
17173 final bool unique; 17158 final bool unique;
17174 17159
17175 IDBRequest count([key_OR_range]); 17160 IDBRequest count([key_OR_range]);
17176 17161
17177 IDBRequest get(key); 17162 IDBRequest get(key);
17178 17163
17179 IDBRequest getKey(key); 17164 IDBRequest getKey(key);
17180 17165
17181 IDBRequest openCursor([IDBKeyRange range, int direction]); 17166 IDBRequest openCursor([key_OR_range, int direction]);
17182 17167
17183 IDBRequest openKeyCursor([IDBKeyRange range, int direction]); 17168 IDBRequest openKeyCursor([key_OR_range, int direction]);
17184 } 17169 }
17185 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17170 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17186 // for details. All rights reserved. Use of this source code is governed by a 17171 // for details. All rights reserved. Use of this source code is governed by a
17187 // BSD-style license that can be found in the LICENSE file. 17172 // BSD-style license that can be found in the LICENSE file.
17188 17173
17189 // WARNING: Do not edit - generated code. 17174 // WARNING: Do not edit - generated code.
17190 17175
17191 interface IDBKey { 17176 interface IDBKey {
17192 } 17177 }
17193 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17178 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
17241 IDBIndex createIndex(String name, String keyPath, [Map options]); 17226 IDBIndex createIndex(String name, String keyPath, [Map options]);
17242 17227
17243 IDBRequest delete(key_OR_keyRange); 17228 IDBRequest delete(key_OR_keyRange);
17244 17229
17245 void deleteIndex(String name); 17230 void deleteIndex(String name);
17246 17231
17247 IDBRequest getObject(key); 17232 IDBRequest getObject(key);
17248 17233
17249 IDBIndex index(String name); 17234 IDBIndex index(String name);
17250 17235
17251 IDBRequest openCursor([IDBKeyRange range, int direction]); 17236 IDBRequest openCursor([key_OR_range, int direction]);
17252 17237
17253 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]); 17238 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
17254 } 17239 }
17255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 17240 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
17256 // for details. All rights reserved. Use of this source code is governed by a 17241 // for details. All rights reserved. Use of this source code is governed by a
17257 // BSD-style license that can be found in the LICENSE file. 17242 // BSD-style license that can be found in the LICENSE file.
17258 17243
17259 // WARNING: Do not edit - generated code. 17244 // WARNING: Do not edit - generated code.
17260 17245
17261 interface IDBRequest extends EventTarget { 17246 interface IDBRequest extends EventTarget {
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
18045 final BatteryManager webkitBattery; 18030 final BatteryManager webkitBattery;
18046 18031
18047 final PointerLock webkitPointer; 18032 final PointerLock webkitPointer;
18048 18033
18049 void getStorageUpdates(); 18034 void getStorageUpdates();
18050 18035
18051 bool javaEnabled(); 18036 bool javaEnabled();
18052 18037
18053 void registerProtocolHandler(String scheme, String url, String title); 18038 void registerProtocolHandler(String scheme, String url, String title);
18054 18039
18055 void webkitGetUserMedia(String options, NavigatorUserMediaSuccessCallback succ essCallback, [NavigatorUserMediaErrorCallback errorCallback]); 18040 void webkitGetUserMedia(Map options, NavigatorUserMediaSuccessCallback success Callback, [NavigatorUserMediaErrorCallback errorCallback]);
18056 } 18041 }
18057 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18042 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18058 // for details. All rights reserved. Use of this source code is governed by a 18043 // for details. All rights reserved. Use of this source code is governed by a
18059 // BSD-style license that can be found in the LICENSE file. 18044 // BSD-style license that can be found in the LICENSE file.
18060 18045
18061 // WARNING: Do not edit - generated code. 18046 // WARNING: Do not edit - generated code.
18062 18047
18063 interface NavigatorUserMediaError { 18048 interface NavigatorUserMediaError {
18064 18049
18065 static final int PERMISSION_DENIED = 1; 18050 static final int PERMISSION_DENIED = 1;
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
18544 18529
18545 // WARNING: Do not edit - generated code. 18530 // WARNING: Do not edit - generated code.
18546 18531
18547 interface Performance { 18532 interface Performance {
18548 18533
18549 final MemoryInfo memory; 18534 final MemoryInfo memory;
18550 18535
18551 final PerformanceNavigation navigation; 18536 final PerformanceNavigation navigation;
18552 18537
18553 final PerformanceTiming timing; 18538 final PerformanceTiming timing;
18539
18540 num webkitNow();
18554 } 18541 }
18555 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18542 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18556 // for details. All rights reserved. Use of this source code is governed by a 18543 // for details. All rights reserved. Use of this source code is governed by a
18557 // BSD-style license that can be found in the LICENSE file. 18544 // BSD-style license that can be found in the LICENSE file.
18558 18545
18559 // WARNING: Do not edit - generated code. 18546 // WARNING: Do not edit - generated code.
18560 18547
18561 interface PerformanceNavigation { 18548 interface PerformanceNavigation {
18562 18549
18563 static final int TYPE_BACK_FORWARD = 2; 18550 static final int TYPE_BACK_FORWARD = 2;
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
18865 final CSSPrimitiveValue right; 18852 final CSSPrimitiveValue right;
18866 18853
18867 final CSSPrimitiveValue top; 18854 final CSSPrimitiveValue top;
18868 } 18855 }
18869 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 18856 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
18870 // for details. All rights reserved. Use of this source code is governed by a 18857 // for details. All rights reserved. Use of this source code is governed by a
18871 // BSD-style license that can be found in the LICENSE file. 18858 // BSD-style license that can be found in the LICENSE file.
18872 18859
18873 // WARNING: Do not edit - generated code. 18860 // WARNING: Do not edit - generated code.
18874 18861
18875 typedef bool RequestAnimationFrameCallback(int time); 18862 typedef bool RequestAnimationFrameCallback(num highResTime);
18876 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18863 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18877 // for details. All rights reserved. Use of this source code is governed by a 18864 // for details. All rights reserved. Use of this source code is governed by a
18878 // BSD-style license that can be found in the LICENSE file. 18865 // BSD-style license that can be found in the LICENSE file.
18879 18866
18880 // WARNING: Do not edit - generated code. 18867 // WARNING: Do not edit - generated code.
18881 18868
18882 interface SQLError { 18869 interface SQLError {
18883 18870
18884 static final int CONSTRAINT_ERR = 6; 18871 static final int CONSTRAINT_ERR = 6;
18885 18872
(...skipping 4073 matching lines...) Expand 10 before | Expand all | Expand 10 after
22959 static final int SAMPLE_COVERAGE = 0x80A0; 22946 static final int SAMPLE_COVERAGE = 0x80A0;
22960 22947
22961 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; 22948 static final int SAMPLE_COVERAGE_INVERT = 0x80AB;
22962 22949
22963 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; 22950 static final int SAMPLE_COVERAGE_VALUE = 0x80AA;
22964 22951
22965 static final int SCISSOR_BOX = 0x0C10; 22952 static final int SCISSOR_BOX = 0x0C10;
22966 22953
22967 static final int SCISSOR_TEST = 0x0C11; 22954 static final int SCISSOR_TEST = 0x0C11;
22968 22955
22969 static final int SHADER_COMPILER = 0x8DFA;
22970
22971 static final int SHADER_TYPE = 0x8B4F; 22956 static final int SHADER_TYPE = 0x8B4F;
22972 22957
22973 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; 22958 static final int SHADING_LANGUAGE_VERSION = 0x8B8C;
22974 22959
22975 static final int SHORT = 0x1402; 22960 static final int SHORT = 0x1402;
22976 22961
22977 static final int SRC_ALPHA = 0x0302; 22962 static final int SRC_ALPHA = 0x0302;
22978 22963
22979 static final int SRC_ALPHA_SATURATE = 0x0308; 22964 static final int SRC_ALPHA_SATURATE = 0x0308;
22980 22965
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
23561 final int length; 23546 final int length;
23562 23547
23563 WebKitAnimation item(int index); 23548 WebKitAnimation item(int index);
23564 } 23549 }
23565 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 23550 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
23566 // for details. All rights reserved. Use of this source code is governed by a 23551 // for details. All rights reserved. Use of this source code is governed by a
23567 // BSD-style license that can be found in the LICENSE file. 23552 // BSD-style license that can be found in the LICENSE file.
23568 23553
23569 // WARNING: Do not edit - generated code. 23554 // WARNING: Do not edit - generated code.
23570 23555
23571 interface WebKitBlobBuilder default _WebKitBlobBuilderFactoryProvider {
23572
23573 WebKitBlobBuilder();
23574
23575 void append(arrayBuffer_OR_blob_OR_value, [String endings]);
23576
23577 Blob getBlob([String contentType]);
23578 }
23579 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
23580 // for details. All rights reserved. Use of this source code is governed by a
23581 // BSD-style license that can be found in the LICENSE file.
23582
23583 // WARNING: Do not edit - generated code.
23584
23585 interface WebKitCSSFilterValue extends CSSValueList { 23556 interface WebKitCSSFilterValue extends CSSValueList {
23586 23557
23587 static final int CSS_FILTER_BLUR = 10; 23558 static final int CSS_FILTER_BLUR = 10;
23588 23559
23589 static final int CSS_FILTER_BRIGHTNESS = 8; 23560 static final int CSS_FILTER_BRIGHTNESS = 8;
23590 23561
23591 static final int CSS_FILTER_CONTRAST = 9; 23562 static final int CSS_FILTER_CONTRAST = 9;
23592 23563
23593 static final int CSS_FILTER_CUSTOM = 12; 23564 static final int CSS_FILTER_CUSTOM = 12;
23594 23565
(...skipping 1645 matching lines...) Expand 10 before | Expand all | Expand 10 after
25240 if (length < 0) throw new IllegalArgumentException('length'); 25211 if (length < 0) throw new IllegalArgumentException('length');
25241 if (start < 0) throw new IndexOutOfRangeException(start); 25212 if (start < 0) throw new IndexOutOfRangeException(start);
25242 int end = start + length; 25213 int end = start + length;
25243 if (end > a.length) throw new IndexOutOfRangeException(end); 25214 if (end > a.length) throw new IndexOutOfRangeException(end);
25244 for (int i = start; i < end; i++) { 25215 for (int i = start; i < end; i++) {
25245 accumulator.add(a[i]); 25216 accumulator.add(a[i]);
25246 } 25217 }
25247 return accumulator; 25218 return accumulator;
25248 } 25219 }
25249 } 25220 }
OLDNEW
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698