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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 1163163004: update one-line docs for svg, gl, audio (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | sdk/lib/web_audio/dartium/web_audio_dartium.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 /**
2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation.
4 *
5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */
1 library dart.dom.svg; 9 library dart.dom.svg;
2 10
3 import 'dart:async'; 11 import 'dart:async';
4 import 'dart:collection'; 12 import 'dart:collection';
5 import 'dart:_internal' hide deprecated; 13 import 'dart:_internal' hide deprecated;
6 import 'dart:html'; 14 import 'dart:html';
7 import 'dart:html_common'; 15 import 'dart:html_common';
8 import 'dart:nativewrappers'; 16 import 'dart:nativewrappers';
9 import 'dart:_blink' as _blink; 17 import 'dart:_blink' as _blink;
10 // DO NOT EDIT 18 // DO NOT EDIT
(...skipping 7511 matching lines...) Expand 10 before | Expand all | Expand 10 after
7522 @DocsEditable() 7530 @DocsEditable()
7523 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7531 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7524 /** 7532 /**
7525 * Constructor instantiated by the DOM when a custom element has been created. 7533 * Constructor instantiated by the DOM when a custom element has been created.
7526 * 7534 *
7527 * This can only be called by subclasses from their created constructor. 7535 * This can only be called by subclasses from their created constructor.
7528 */ 7536 */
7529 _SVGVKernElement.created() : super.created(); 7537 _SVGVKernElement.created() : super.created();
7530 7538
7531 } 7539 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698