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

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11443002: Revert "Moving AudioElement back to dart:html" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | sdk/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 html; 1 library html;
2 2
3 import 'dart:collection'; 3 import 'dart:collection';
4 import 'dart:html_common'; 4 import 'dart:html_common';
5 import 'dart:isolate'; 5 import 'dart:isolate';
6 import 'dart:json'; 6 import 'dart:json';
7 import 'dart:svg' as svg; 7 import 'dart:svg' as svg;
8 import 'dart:web_audio' as web_audio; 8 import 'dart:web_audio' as web_audio;
9 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 9 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
10 // for details. All rights reserved. Use of this source code is governed by a 10 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 final bool specified; 368 final bool specified;
369 369
370 /// @domName Attr.value; @docsEditable true 370 /// @domName Attr.value; @docsEditable true
371 String value; 371 String value;
372 } 372 }
373 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 373 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
374 // for details. All rights reserved. Use of this source code is governed by a 374 // for details. All rights reserved. Use of this source code is governed by a
375 // BSD-style license that can be found in the LICENSE file. 375 // BSD-style license that can be found in the LICENSE file.
376 376
377 377
378 /// @domName HTMLAudioElement; @docsEditable true
379 class AudioElement extends MediaElement native "*HTMLAudioElement" {
380
381 factory AudioElement([String src]) {
382 if (!?src) {
383 return _AudioElementFactoryProvider.createAudioElement();
384 }
385 return _AudioElementFactoryProvider.createAudioElement(src);
386 }
387 }
388 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
389 // for details. All rights reserved. Use of this source code is governed by a
390 // BSD-style license that can be found in the LICENSE file.
391
392
393 /// @domName HTMLBRElement; @docsEditable true 378 /// @domName HTMLBRElement; @docsEditable true
394 class BRElement extends Element implements Element native "*HTMLBRElement" { 379 class BRElement extends Element implements Element native "*HTMLBRElement" {
395 380
396 factory BRElement() => document.$dom_createElement("br"); 381 factory BRElement() => document.$dom_createElement("br");
397 382
398 /// @domName HTMLBRElement.clear; @docsEditable true 383 /// @domName HTMLBRElement.clear; @docsEditable true
399 String clear; 384 String clear;
400 } 385 }
401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 386 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
402 // for details. All rights reserved. Use of this source code is governed by a 387 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 7191 matching lines...) Expand 10 before | Expand all | Expand 10 after
7594 // Firefox 7579 // Firefox
7595 return this['DOMMouseScroll']; 7580 return this['DOMMouseScroll'];
7596 } 7581 }
7597 } 7582 }
7598 } 7583 }
7599 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7584 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7600 // for details. All rights reserved. Use of this source code is governed by a 7585 // for details. All rights reserved. Use of this source code is governed by a
7601 // BSD-style license that can be found in the LICENSE file. 7586 // BSD-style license that can be found in the LICENSE file.
7602 7587
7603 7588
7589 /// @domName ElementTimeControl
7590 abstract class ElementTimeControl {
7591
7592 /// @domName ElementTimeControl.beginElement; @docsEditable true
7593 void beginElement();
7594
7595 /// @domName ElementTimeControl.beginElementAt; @docsEditable true
7596 void beginElementAt(num offset);
7597
7598 /// @domName ElementTimeControl.endElement; @docsEditable true
7599 void endElement();
7600
7601 /// @domName ElementTimeControl.endElementAt; @docsEditable true
7602 void endElementAt(num offset);
7603 }
7604 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7605 // for details. All rights reserved. Use of this source code is governed by a
7606 // BSD-style license that can be found in the LICENSE file.
7607
7608
7604 /// @domName ElementTraversal 7609 /// @domName ElementTraversal
7605 abstract class ElementTraversal { 7610 abstract class ElementTraversal {
7606 7611
7607 int $dom_childElementCount; 7612 int $dom_childElementCount;
7608 7613
7609 Element $dom_firstElementChild; 7614 Element $dom_firstElementChild;
7610 7615
7611 Element $dom_lastElementChild; 7616 Element $dom_lastElementChild;
7612 7617
7613 Element nextElementSibling; 7618 Element nextElementSibling;
(...skipping 10810 matching lines...) Expand 10 before | Expand all | Expand 10 after
18424 18429
18425 // WARNING: Do not edit - generated code. 18430 // WARNING: Do not edit - generated code.
18426 18431
18427 18432
18428 typedef void VoidCallback(); 18433 typedef void VoidCallback();
18429 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 18434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18430 // for details. All rights reserved. Use of this source code is governed by a 18435 // for details. All rights reserved. Use of this source code is governed by a
18431 // BSD-style license that can be found in the LICENSE file. 18436 // BSD-style license that can be found in the LICENSE file.
18432 18437
18433 18438
18439 /// @domName WaveTable; @docsEditable true
18440 class WaveTable native "*WaveTable" {
18441 }
18442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
18443 // for details. All rights reserved. Use of this source code is governed by a
18444 // BSD-style license that can be found in the LICENSE file.
18445
18446
18434 /// @domName WebGLActiveInfo; @docsEditable true 18447 /// @domName WebGLActiveInfo; @docsEditable true
18435 class WebGLActiveInfo native "*WebGLActiveInfo" { 18448 class WebGLActiveInfo native "*WebGLActiveInfo" {
18436 18449
18437 /// @domName WebGLActiveInfo.name; @docsEditable true 18450 /// @domName WebGLActiveInfo.name; @docsEditable true
18438 final String name; 18451 final String name;
18439 18452
18440 /// @domName WebGLActiveInfo.size; @docsEditable true 18453 /// @domName WebGLActiveInfo.size; @docsEditable true
18441 final int size; 18454 final int size;
18442 18455
18443 /// @domName WebGLActiveInfo.type; @docsEditable true 18456 /// @domName WebGLActiveInfo.type; @docsEditable true
(...skipping 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after
20327 20340
20328 class _ArrayBufferFactoryProvider { 20341 class _ArrayBufferFactoryProvider {
20329 static ArrayBuffer createArrayBuffer(int length) => 20342 static ArrayBuffer createArrayBuffer(int length) =>
20330 JS('ArrayBuffer', 'new ArrayBuffer(#)', length); 20343 JS('ArrayBuffer', 'new ArrayBuffer(#)', length);
20331 } 20344 }
20332 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 20345 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20333 // for details. All rights reserved. Use of this source code is governed by a 20346 // for details. All rights reserved. Use of this source code is governed by a
20334 // BSD-style license that can be found in the LICENSE file. 20347 // BSD-style license that can be found in the LICENSE file.
20335 20348
20336 20349
20337 class _AudioElementFactoryProvider {
20338 static AudioElement createAudioElement([String src = null]) {
20339 if (src == null) return JS('AudioElement', 'new Audio()');
20340 return JS('AudioElement', 'new Audio(#)', src);
20341 }
20342 }
20343 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
20344 // for details. All rights reserved. Use of this source code is governed by a
20345 // BSD-style license that can be found in the LICENSE file.
20346
20347
20348 class _BlobFactoryProvider { 20350 class _BlobFactoryProvider {
20349 static Blob createBlob([List blobParts = null, String type, String endings]) { 20351 static Blob createBlob([List blobParts = null, String type, String endings]) {
20350 // TODO: validate that blobParts is a JS Array and convert if not. 20352 // TODO: validate that blobParts is a JS Array and convert if not.
20351 // TODO: any coercions on the elements of blobParts, e.g. coerce a typed 20353 // TODO: any coercions on the elements of blobParts, e.g. coerce a typed
20352 // array to ArrayBuffer if it is a total view. 20354 // array to ArrayBuffer if it is a total view.
20353 if (type == null && endings == null) { 20355 if (type == null && endings == null) {
20354 return _create_1(blobParts); 20356 return _create_1(blobParts);
20355 } 20357 }
20356 var bag = _create_bag(); 20358 var bag = _create_bag();
20357 if (type != null) _bag_set(bag, 'type', type); 20359 if (type != null) _bag_set(bag, 'type', type);
(...skipping 4909 matching lines...) Expand 10 before | Expand all | Expand 10 after
25267 T next() { 25269 T next() {
25268 if (!hasNext) { 25270 if (!hasNext) {
25269 throw new StateError("No more elements"); 25271 throw new StateError("No more elements");
25270 } 25272 }
25271 return _array[_pos++]; 25273 return _array[_pos++];
25272 } 25274 }
25273 25275
25274 final List<T> _array; 25276 final List<T> _array;
25275 int _pos; 25277 int _pos;
25276 } 25278 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698