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

Side by Side Diff: tools/dom/src/CanvasImageSource.dart

Issue 1448963002: Fixing dart:html links _not_ found in docs.json (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/src/CrossFrameTypes.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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of html; 5 part of html;
6 6
7 /** 7 /**
8 * An object that can be drawn to a 2D canvas rendering context. 8 * An object that can be drawn to a 2D canvas rendering context.
9 * 9 *
10 * The image drawn to the canvas depends on the type of this object: 10 * The image drawn to the canvas depends on the type of this object:
(...skipping 15 matching lines...) Expand all
26 * 26 *
27 * ## See also 27 * ## See also
28 * 28 *
29 * * [CanvasRenderingContext2D.drawImage] 29 * * [CanvasRenderingContext2D.drawImage]
30 * * [CanvasRenderingContext2D.drawImageToRect] 30 * * [CanvasRenderingContext2D.drawImageToRect]
31 * * [CanvasRenderingContext2D.drawImageScaled] 31 * * [CanvasRenderingContext2D.drawImageScaled]
32 * * [CanvasRenderingContext2D.drawImageScaledFromSource] 32 * * [CanvasRenderingContext2D.drawImageScaledFromSource]
33 * 33 *
34 * ## Other resources 34 * ## Other resources
35 * 35 *
36 * * [Image sources for 2D rendering contexts] 36 * * [Image sources for 2D rendering
37 * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-eleme nt.html#image-sources-for-2d-rendering-contexts) 37 * contexts](https://html.spec.whatwg.org/multipage/scripting.html#image-sourc es-for-2d-rendering-contexts)
38 * from WHATWG. 38 * from WHATWG.
39 * * [Drawing images] 39 * * [Drawing images](https://html.spec.whatwg.org/multipage/scripting.html#dom- context-2d-drawimage)
40 * (http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-eleme nt.html#dom-context-2d-drawimage) 40 * from WHATWG.
41 * from WHATWG.
42 */ 41 */
43 abstract class CanvasImageSource {} 42 abstract class CanvasImageSource {}
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/src/CrossFrameTypes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698