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

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

Issue 35863006: Fix for getContextAttributes which wraps bare dictionary into a Dart type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 | « tests/html/webgl_1_test.dart ('k') | tools/dom/scripts/dartmetadata.py » ('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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
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": { 532 "dart.dom.web_gl": {
533 "WebGLContextAttributes": {
534 "comment": [
535 "/**",
536 " * The properties of a WebGL rendering context.",
537 " *",
538 " * If [alpha] is `true`, then the context has an alpha channel.",
539 " *",
540 " * If [antialias] is `true`, then antialiasing is performed by the brow ser, but",
541 " * only if the browser's implementation of WebGL supports antialiasing. ",
542 " *",
543 " * If [depth] is `true`, then the context has a depth buffer of at leas t 16",
544 " * bits.",
545 " *",
546 " * If [premultipliedAlpha] is `true`, then the context's colors are ass umed to",
547 " * be premultiplied. This means that color values are assumed to have been",
548 " * multiplied by their alpha values. If [alpha] is `false`, then this f lag is",
549 " * ignored.",
550 " *",
551 " * If [preserveDrawingBuffer] is `false`, then all contents of the cont ext are",
552 " * cleared. If `true`, then all values will remain until changed or cle ared.",
553 " *",
554 " * If [stencil] is `true`, then the context has a stencil buffer of at least 8",
555 " * bits.",
556 " */"
557 ]
558 },
533 "WebGLRenderingContext": { 559 "WebGLRenderingContext": {
534 "members": { 560 "members": {
535 "bufferData": [ 561 "bufferData": [
536 "/**", 562 "/**",
537 " * Buffers the specified data.", 563 " * Buffers the specified data.",
538 " *", 564 " *",
539 " * This specific method is provided for WebGL API compatibility rea sons, but", 565 " * This specific method is provided for WebGL API compatibility rea sons, but",
540 " * it is highly recommended that you use [bufferDataTyped] or [buff erByteData]", 566 " * it is highly recommended that you use [bufferDataTyped] or [buff erByteData]",
541 " * depending on your purposes.", 567 " * depending on your purposes.",
542 " */" 568 " */"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 " *", 613 " *",
588 " * [oldVersion] should match the database's current [version] exact ly.", 614 " * [oldVersion] should match the database's current [version] exact ly.",
589 " *", 615 " *",
590 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 616 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
591 " */" 617 " */"
592 ] 618 ]
593 } 619 }
594 } 620 }
595 } 621 }
596 } 622 }
OLDNEW
« no previous file with comments | « tests/html/webgl_1_test.dart ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698