OLD | NEW |
1 { | 1 { |
2 "dart.dom.html": { | 2 "dart.dom.html": { |
3 "CanvasGradient": { | 3 "CanvasGradient": { |
4 "comment": [ | 4 "comment": [ |
5 "/**", | 5 "/**", |
6 " * An opaque canvas object representing a gradient.", | 6 " * An opaque canvas object representing a gradient.", |
7 " *", | 7 " *", |
8 " * Created by calling [createLinearGradient] or [createRadialGradient]
on a", | 8 " * Created by calling [createLinearGradient] or [createRadialGradient]
on a", |
9 " * [CanvasRenderingContext2D] object.", | 9 " * [CanvasRenderingContext2D] object.", |
10 " *", | 10 " *", |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 " * Get a Stream that fires events when AudioProcessingEvents occur.
", | 522 " * Get a Stream that fires events when AudioProcessingEvents occur.
", |
523 " * This particular stream is special in that it only allows one lis
tener to a", | 523 " * This particular stream is special in that it only allows one lis
tener to a", |
524 " * given stream. Converting the returned Stream [asBroadcast] will
likely ruin", | 524 " * given stream. Converting the returned Stream [asBroadcast] will
likely ruin", |
525 " * the soft-real-time properties which which these events are fired
and can", | 525 " * the soft-real-time properties which which these events are fired
and can", |
526 " * be processed.", | 526 " * be processed.", |
527 " */" | 527 " */" |
528 ] | 528 ] |
529 } | 529 } |
530 } | 530 } |
531 }, | 531 }, |
| 532 "dart.dom.web_gl": { |
| 533 "WebGLRenderingContext": { |
| 534 "members": { |
| 535 "bufferData": [ |
| 536 "/**", |
| 537 " * Buffers the specified data.", |
| 538 " *", |
| 539 " * This specific method is provided for WebGL API compatibility rea
sons, but", |
| 540 " * it is highly recommended that you use [bufferDataTyped] or [buff
erByteData]", |
| 541 " * depending on your purposes.", |
| 542 " */" |
| 543 ], |
| 544 "bufferSubData": [ |
| 545 "/**", |
| 546 " * Buffers the specified subset of data.", |
| 547 " *", |
| 548 " * This specific method is provided for WebGL API compatibility rea
sons, but", |
| 549 " * it is highly recommended that you use [bufferSubDataTyped] or [b
ufferSubByteData]", |
| 550 " * depending on your purposes.", |
| 551 " */" |
| 552 ], |
| 553 "texImage2D": [ |
| 554 "/**", |
| 555 " * Updates the currently bound texture to [data].", |
| 556 " *", |
| 557 " * This specific method is provided for WebGL API compatibility rea
sons, but it", |
| 558 " * is highly recommended that you use [texImage2DUntyped] or [texIm
age2DTyped]", |
| 559 " * (or for more specificity, the more specialized [texImage2DImageD
ata],", |
| 560 " * [texImage2DCanvas], [texImage2DVideo]).", |
| 561 " */" |
| 562 ], |
| 563 "texSubImage2D": [ |
| 564 "/**", |
| 565 " * Updates a sub-rectangle of the currently bound texture to [data]
.", |
| 566 " *", |
| 567 " * This specific method is provided for WebGL API compatibility rea
sons, but it", |
| 568 " * is highly recommended that you use [texSubImage2DUntyped] or [te
xSubImage2DTyped]", |
| 569 " * (or for more specificity, the more specialized [texSubImage2DIma
geData],", |
| 570 " * [texSubImage2DCanvas], [texSubImage2DVideo]).", |
| 571 " */" |
| 572 ] |
| 573 } |
| 574 } |
| 575 }, |
532 "dart.dom.web_sql": { | 576 "dart.dom.web_sql": { |
533 "Database": { | 577 "Database": { |
534 "members": { | 578 "members": { |
535 "changeVersion": [ | 579 "changeVersion": [ |
536 "/**", | 580 "/**", |
537 " * Atomically update the database version to [newVersion], asynchro
nously", | 581 " * Atomically update the database version to [newVersion], asynchro
nously", |
538 " * running [callback] on the [SqlTransaction] representing this", | 582 " * running [callback] on the [SqlTransaction] representing this", |
539 " * [changeVersion] transaction.", | 583 " * [changeVersion] transaction.", |
540 " *", | 584 " *", |
541 " * If [callback] runs successfully, then [successCallback] is calle
d.", | 585 " * If [callback] runs successfully, then [successCallback] is calle
d.", |
542 " * Otherwise, [errorCallback] is called.", | 586 " * Otherwise, [errorCallback] is called.", |
543 " *", | 587 " *", |
544 " * [oldVersion] should match the database's current [version] exact
ly.", | 588 " * [oldVersion] should match the database's current [version] exact
ly.", |
545 " *", | 589 " *", |
546 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", | 590 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", |
547 " */" | 591 " */" |
548 ] | 592 ] |
549 } | 593 } |
550 } | 594 } |
551 } | 595 } |
552 } | 596 } |
OLD | NEW |