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

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

Issue 12334086: Added Web SQL to the docs.json generation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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_sql/dartium/web_sql_dartium.dart ('k') | tools/dom/docs/lib/docs.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 { 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 " * request.on.load.add((event) => print('Request complete'));", 521 " * request.on.load.add((event) => print('Request complete'));",
522 " *", 522 " *",
523 " * is the (more verbose) equivalent of", 523 " * is the (more verbose) equivalent of",
524 " *", 524 " *",
525 " * var request = new HttpRequest.get('http://dartlang.org',", 525 " * var request = new HttpRequest.get('http://dartlang.org',",
526 " * (event) => print('Request complete'));", 526 " * (event) => print('Request complete'));",
527 " */" 527 " */"
528 ] 528 ]
529 } 529 }
530 } 530 }
531 },
532 "dart.dom.web_sql": {
533 "Database": {
534 "members": {
535 "changeVersion": [
536 "/**",
537 " * Atomically update the database version to [newVersion], asynchro nously",
538 " * running [callback] on the [SqlTransaction] representing this",
539 " * [changeVersion] transaction.",
540 " *",
541 " * If [callback] runs successfully, then [successCallback] is calle d.",
542 " * Otherwise, [errorCallback] is called.",
543 " *",
544 " * [oldVersion] should match the database's current [version] exact ly.",
545 " *",
546 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
547 " */"
548 ]
549 }
550 }
531 } 551 }
532 } 552 }
OLDNEW
« no previous file with comments | « sdk/lib/web_sql/dartium/web_sql_dartium.dart ('k') | tools/dom/docs/lib/docs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698