| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 " *", | 472 " *", |
| 473 " * is the (more verbose) equivalent of", | 473 " * is the (more verbose) equivalent of", |
| 474 " *", | 474 " *", |
| 475 " * HttpRequest.getString('http://dartlang.org').then(", | 475 " * HttpRequest.getString('http://dartlang.org').then(", |
| 476 " * (result) => print('Request complete: $result'));", | 476 " * (result) => print('Request complete: $result'));", |
| 477 " */" | 477 " */" |
| 478 ] | 478 ] |
| 479 } | 479 } |
| 480 } | 480 } |
| 481 }, | 481 }, |
| 482 "dart.dom.web_audio": { |
| 483 "ScriptProcessorNode": { |
| 484 "members": { |
| 485 "onaudioprocess": [ |
| 486 "/**", |
| 487 " * Get a Stream that fires events when AudioProcessingEvents occur.
", |
| 488 " * This particular stream is special in that it only allows one lis
tener to a", |
| 489 " * given stream. Converting the returned Stream [asBroadcast] will
likely ruin", |
| 490 " * the soft-real-time properties which which these events are fired
and can", |
| 491 " * be processed.", |
| 492 " */" |
| 493 ] |
| 494 } |
| 495 } |
| 496 }, |
| 482 "dart.dom.web_sql": { | 497 "dart.dom.web_sql": { |
| 483 "Database": { | 498 "Database": { |
| 484 "members": { | 499 "members": { |
| 485 "changeVersion": [ | 500 "changeVersion": [ |
| 486 "/**", | 501 "/**", |
| 487 " * Atomically update the database version to [newVersion], asynchro
nously", | 502 " * Atomically update the database version to [newVersion], asynchro
nously", |
| 488 " * running [callback] on the [SqlTransaction] representing this", | 503 " * running [callback] on the [SqlTransaction] representing this", |
| 489 " * [changeVersion] transaction.", | 504 " * [changeVersion] transaction.", |
| 490 " *", | 505 " *", |
| 491 " * If [callback] runs successfully, then [successCallback] is calle
d.", | 506 " * If [callback] runs successfully, then [successCallback] is calle
d.", |
| 492 " * Otherwise, [errorCallback] is called.", | 507 " * Otherwise, [errorCallback] is called.", |
| 493 " *", | 508 " *", |
| 494 " * [oldVersion] should match the database's current [version] exact
ly.", | 509 " * [oldVersion] should match the database's current [version] exact
ly.", |
| 495 " *", | 510 " *", |
| 496 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", | 511 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom
-database-changeversion) from W3C.", |
| 497 " */" | 512 " */" |
| 498 ] | 513 ] |
| 499 } | 514 } |
| 500 } | 515 } |
| 501 } | 516 } |
| 502 } | 517 } |
| OLD | NEW |