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

Side by Side Diff: client/dom/generated/src/interface/CanvasRenderingContext2D.dart

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List Created 9 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface CanvasRenderingContext2D extends CanvasRenderingContext { 7 interface CanvasRenderingContext2D extends CanvasRenderingContext {
8 8
9 String get font(); 9 String get font();
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 void set shadowOffsetY(num value); 51 void set shadowOffsetY(num value);
52 52
53 String get textAlign(); 53 String get textAlign();
54 54
55 void set textAlign(String value); 55 void set textAlign(String value);
56 56
57 String get textBaseline(); 57 String get textBaseline();
58 58
59 void set textBaseline(String value); 59 void set textBaseline(String value);
60 60
61 List get webkitLineDash();
62
63 void set webkitLineDash(List value);
64
61 num get webkitLineDashOffset(); 65 num get webkitLineDashOffset();
62 66
63 void set webkitLineDashOffset(num value); 67 void set webkitLineDashOffset(num value);
64 68
65 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise); 69 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise);
66 70
67 void arcTo(num x1, num y1, num x2, num y2, num radius); 71 void arcTo(num x1, num y1, num x2, num y2, num radius);
68 72
69 void beginPath(); 73 void beginPath();
70 74
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 void stroke(); 151 void stroke();
148 152
149 void strokeRect(num x, num y, num width, num height, [num lineWidth]); 153 void strokeRect(num x, num y, num width, num height, [num lineWidth]);
150 154
151 void strokeText(String text, num x, num y, [num maxWidth]); 155 void strokeText(String text, num x, num y, [num maxWidth]);
152 156
153 void transform(num m11, num m12, num m21, num m22, num dx, num dy); 157 void transform(num m11, num m12, num m21, num m22, num dx, num dy);
154 158
155 void translate(num tx, num ty); 159 void translate(num tx, num ty);
156 } 160 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/XPathException.dart ('k') | client/dom/generated/src/interface/Clipboard.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698