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

Side by Side Diff: tools/dom/docs/docs.json

Issue 23889005: Cleaning up a bunch of DOM generation tables (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/dom.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/dom.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698