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

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

Issue 10211003: Roll IDL to multivm@439 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | « no previous file | lib/dom/frog/dom_frog.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) 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // for details. All rights reserved. Use of this source code is governed by a 90 // for details. All rights reserved. Use of this source code is governed by a
91 // BSD-style license that can be found in the LICENSE file. 91 // BSD-style license that can be found in the LICENSE file.
92 92
93 class _MessageChannelFactoryProvider { 93 class _MessageChannelFactoryProvider {
94 factory MessageChannel() => _dummy(); 94 factory MessageChannel() => _dummy();
95 } 95 }
96 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 96 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
97 // for details. All rights reserved. Use of this source code is governed by a 97 // for details. All rights reserved. Use of this source code is governed by a
98 // BSD-style license that can be found in the LICENSE file. 98 // BSD-style license that can be found in the LICENSE file.
99 99
100 class _NotificationFactoryProvider {
101 factory Notification(String title, [Map options = null]) => _dummy();
102 }
103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
104 // for details. All rights reserved. Use of this source code is governed by a
105 // BSD-style license that can be found in the LICENSE file.
106
100 class _PeerConnection00FactoryProvider { 107 class _PeerConnection00FactoryProvider {
101 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) => _dummy(); 108 factory PeerConnection00(String serverConfiguration, IceCallback iceCallback) => _dummy();
102 } 109 }
103 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 110 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
104 // for details. All rights reserved. Use of this source code is governed by a 111 // for details. All rights reserved. Use of this source code is governed by a
105 // BSD-style license that can be found in the LICENSE file. 112 // BSD-style license that can be found in the LICENSE file.
106 113
107 class _SessionDescriptionFactoryProvider { 114 class _SessionDescriptionFactoryProvider {
108 factory SessionDescription(String sdp) => _dummy(); 115 factory SessionDescription(String sdp) => _dummy();
109 } 116 }
(...skipping 2253 matching lines...) Expand 10 before | Expand all | Expand 10 after
2363 final String systemId; 2370 final String systemId;
2364 } 2371 }
2365 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2372 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2366 // for details. All rights reserved. Use of this source code is governed by a 2373 // for details. All rights reserved. Use of this source code is governed by a
2367 // BSD-style license that can be found in the LICENSE file. 2374 // BSD-style license that can be found in the LICENSE file.
2368 2375
2369 // WARNING: Do not edit - generated code. 2376 // WARNING: Do not edit - generated code.
2370 2377
2371 interface DynamicsCompressorNode extends AudioNode { 2378 interface DynamicsCompressorNode extends AudioNode {
2372 2379
2380 final AudioParam attack;
2381
2373 final AudioParam knee; 2382 final AudioParam knee;
2374 2383
2375 final AudioParam ratio; 2384 final AudioParam ratio;
2376 2385
2377 final AudioParam reduction; 2386 final AudioParam reduction;
2378 2387
2388 final AudioParam release;
2389
2379 final AudioParam threshold; 2390 final AudioParam threshold;
2380 } 2391 }
2381 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2392 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2382 // for details. All rights reserved. Use of this source code is governed by a 2393 // for details. All rights reserved. Use of this source code is governed by a
2383 // BSD-style license that can be found in the LICENSE file. 2394 // BSD-style license that can be found in the LICENSE file.
2384 2395
2385 // WARNING: Do not edit - generated code. 2396 // WARNING: Do not edit - generated code.
2386 2397
2387 interface EXTTextureFilterAnisotropic { 2398 interface EXTTextureFilterAnisotropic {
2388 2399
(...skipping 2684 matching lines...) Expand 10 before | Expand all | Expand 10 after
5073 final String name; 5084 final String name;
5074 5085
5075 final List<String> objectStoreNames; 5086 final List<String> objectStoreNames;
5076 5087
5077 final String version; 5088 final String version;
5078 5089
5079 void addEventListener(String type, EventListener listener, [bool useCapture]); 5090 void addEventListener(String type, EventListener listener, [bool useCapture]);
5080 5091
5081 void close(); 5092 void close();
5082 5093
5083 IDBObjectStore createObjectStore(String name); 5094 IDBObjectStore createObjectStore(String name, [Map options]);
5084 5095
5085 void deleteObjectStore(String name); 5096 void deleteObjectStore(String name);
5086 5097
5087 bool dispatchEvent(Event evt); 5098 bool dispatchEvent(Event evt);
5088 5099
5089 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 5100 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
5090 5101
5091 IDBVersionChangeRequest setVersion(String version); 5102 IDBVersionChangeRequest setVersion(String version);
5092 5103
5093 IDBTransaction transaction(storeName_OR_storeNames, [int mode]); 5104 IDBTransaction transaction(storeName_OR_storeNames, [int mode]);
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
5163 final bool multiEntry; 5174 final bool multiEntry;
5164 5175
5165 final String name; 5176 final String name;
5166 5177
5167 final IDBObjectStore objectStore; 5178 final IDBObjectStore objectStore;
5168 5179
5169 final bool unique; 5180 final bool unique;
5170 5181
5171 IDBRequest count([key_OR_range]); 5182 IDBRequest count([key_OR_range]);
5172 5183
5173 IDBRequest getObject(/*IDBKey*/ key); 5184 IDBRequest get(key);
5174 5185
5175 IDBRequest getKey(/*IDBKey*/ key); 5186 IDBRequest getKey(key);
5176 5187
5177 IDBRequest openCursor([IDBKeyRange range, int direction]); 5188 IDBRequest openCursor([IDBKeyRange range, int direction]);
5178 5189
5179 IDBRequest openKeyCursor([IDBKeyRange range, int direction]); 5190 IDBRequest openKeyCursor([IDBKeyRange range, int direction]);
5180 } 5191 }
5181 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5192 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5182 // for details. All rights reserved. Use of this source code is governed by a 5193 // for details. All rights reserved. Use of this source code is governed by a
5183 // BSD-style license that can be found in the LICENSE file. 5194 // BSD-style license that can be found in the LICENSE file.
5184 5195
5185 // WARNING: Do not edit - generated code. 5196 // WARNING: Do not edit - generated code.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
5227 final String name; 5238 final String name;
5228 5239
5229 final IDBTransaction transaction; 5240 final IDBTransaction transaction;
5230 5241
5231 IDBRequest add(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]); 5242 IDBRequest add(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
5232 5243
5233 IDBRequest clear(); 5244 IDBRequest clear();
5234 5245
5235 IDBRequest count([key_OR_range]); 5246 IDBRequest count([key_OR_range]);
5236 5247
5237 IDBIndex createIndex(String name, String keyPath); 5248 IDBIndex createIndex(String name, String keyPath, [Map options]);
5238 5249
5239 IDBRequest delete(key_OR_keyRange); 5250 IDBRequest delete(key_OR_keyRange);
5240 5251
5241 void deleteIndex(String name); 5252 void deleteIndex(String name);
5242 5253
5243 IDBRequest getObject(/*IDBKey*/ key); 5254 IDBRequest getObject(key);
5244 5255
5245 IDBIndex index(String name); 5256 IDBIndex index(String name);
5246 5257
5247 IDBRequest openCursor([IDBKeyRange range, int direction]); 5258 IDBRequest openCursor([IDBKeyRange range, int direction]);
5248 5259
5249 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]); 5260 IDBRequest put(/*SerializedScriptValue*/ value, [/*IDBKey*/ key]);
5250 } 5261 }
5251 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5262 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5252 // for details. All rights reserved. Use of this source code is governed by a 5263 // for details. All rights reserved. Use of this source code is governed by a
5253 // BSD-style license that can be found in the LICENSE file. 5264 // BSD-style license that can be found in the LICENSE file.
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
5346 String toSdp(); 5357 String toSdp();
5347 } 5358 }
5348 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5359 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5349 // for details. All rights reserved. Use of this source code is governed by a 5360 // for details. All rights reserved. Use of this source code is governed by a
5350 // BSD-style license that can be found in the LICENSE file. 5361 // BSD-style license that can be found in the LICENSE file.
5351 5362
5352 // WARNING: Do not edit - generated code. 5363 // WARNING: Do not edit - generated code.
5353 5364
5354 interface ImageData { 5365 interface ImageData {
5355 5366
5356 final CanvasPixelArray data; 5367 final Uint8ClampedArray data;
5357 5368
5358 final int height; 5369 final int height;
5359 5370
5360 final int width; 5371 final int width;
5361 } 5372 }
5362 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5373 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5363 // for details. All rights reserved. Use of this source code is governed by a 5374 // for details. All rights reserved. Use of this source code is governed by a
5364 // BSD-style license that can be found in the LICENSE file. 5375 // BSD-style license that can be found in the LICENSE file.
5365 5376
5366 // WARNING: Do not edit - generated code. 5377 // WARNING: Do not edit - generated code.
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
6295 final String publicId; 6306 final String publicId;
6296 6307
6297 final String systemId; 6308 final String systemId;
6298 } 6309 }
6299 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6310 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6300 // for details. All rights reserved. Use of this source code is governed by a 6311 // for details. All rights reserved. Use of this source code is governed by a
6301 // BSD-style license that can be found in the LICENSE file. 6312 // BSD-style license that can be found in the LICENSE file.
6302 6313
6303 // WARNING: Do not edit - generated code. 6314 // WARNING: Do not edit - generated code.
6304 6315
6305 interface Notification extends EventTarget { 6316 interface Notification extends EventTarget default _NotificationFactoryProvider {
6317
6318 Notification(String title, [Map options]);
6306 6319
6307 String dir; 6320 String dir;
6308 6321
6309 String replaceId; 6322 String replaceId;
6310 6323
6311 String tag; 6324 String tag;
6312 6325
6313 void addEventListener(String type, EventListener listener, [bool useCapture]); 6326 void addEventListener(String type, EventListener listener, [bool useCapture]);
6314 6327
6315 void cancel(); 6328 void cancel();
(...skipping 6604 matching lines...) Expand 10 before | Expand all | Expand 10 after
12920 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12921 // for details. All rights reserved. Use of this source code is governed by a 12934 // for details. All rights reserved. Use of this source code is governed by a
12922 // BSD-style license that can be found in the LICENSE file. 12935 // BSD-style license that can be found in the LICENSE file.
12923 12936
12924 Window get window() => _dummy(); 12937 Window get window() => _dummy();
12925 12938
12926 // TODO(vsm): Remove when prefixes are supported. 12939 // TODO(vsm): Remove when prefixes are supported.
12927 Window get dom_window() => _dummy(); 12940 Window get dom_window() => _dummy();
12928 12941
12929 Document get document() => _dummy(); 12942 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698