| OLD | NEW |
| 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 class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
ntextWrappingImplementation implements CanvasRenderingContext2D { | 7 class _CanvasRenderingContext2DWrappingImplementation extends _CanvasRenderingCo
ntextWrappingImplementation implements CanvasRenderingContext2D { |
| 8 _CanvasRenderingContext2DWrappingImplementation() : super() {} | 8 _CanvasRenderingContext2DWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__CanvasRenderingContext2DWrappingImplementation() native { | 10 static create__CanvasRenderingContext2DWrappingImplementation() native { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 void set textAlign(String value) { _set__CanvasRenderingContext2D_textAlign(th
is, value); } | 83 void set textAlign(String value) { _set__CanvasRenderingContext2D_textAlign(th
is, value); } |
| 84 static void _set__CanvasRenderingContext2D_textAlign(var _this, String value)
native; | 84 static void _set__CanvasRenderingContext2D_textAlign(var _this, String value)
native; |
| 85 | 85 |
| 86 String get textBaseline() { return _get__CanvasRenderingContext2D_textBaseline
(this); } | 86 String get textBaseline() { return _get__CanvasRenderingContext2D_textBaseline
(this); } |
| 87 static String _get__CanvasRenderingContext2D_textBaseline(var _this) native; | 87 static String _get__CanvasRenderingContext2D_textBaseline(var _this) native; |
| 88 | 88 |
| 89 void set textBaseline(String value) { _set__CanvasRenderingContext2D_textBasel
ine(this, value); } | 89 void set textBaseline(String value) { _set__CanvasRenderingContext2D_textBasel
ine(this, value); } |
| 90 static void _set__CanvasRenderingContext2D_textBaseline(var _this, String valu
e) native; | 90 static void _set__CanvasRenderingContext2D_textBaseline(var _this, String valu
e) native; |
| 91 | 91 |
| 92 List get webkitLineDash() { return _get__CanvasRenderingContext2D_webkitLineDa
sh(this); } |
| 93 static List _get__CanvasRenderingContext2D_webkitLineDash(var _this) native; |
| 94 |
| 95 void set webkitLineDash(List value) { _set__CanvasRenderingContext2D_webkitLin
eDash(this, value); } |
| 96 static void _set__CanvasRenderingContext2D_webkitLineDash(var _this, List valu
e) native; |
| 97 |
| 92 num get webkitLineDashOffset() { return _get__CanvasRenderingContext2D_webkitL
ineDashOffset(this); } | 98 num get webkitLineDashOffset() { return _get__CanvasRenderingContext2D_webkitL
ineDashOffset(this); } |
| 93 static num _get__CanvasRenderingContext2D_webkitLineDashOffset(var _this) nati
ve; | 99 static num _get__CanvasRenderingContext2D_webkitLineDashOffset(var _this) nati
ve; |
| 94 | 100 |
| 95 void set webkitLineDashOffset(num value) { _set__CanvasRenderingContext2D_webk
itLineDashOffset(this, value); } | 101 void set webkitLineDashOffset(num value) { _set__CanvasRenderingContext2D_webk
itLineDashOffset(this, value); } |
| 96 static void _set__CanvasRenderingContext2D_webkitLineDashOffset(var _this, num
value) native; | 102 static void _set__CanvasRenderingContext2D_webkitLineDashOffset(var _this, num
value) native; |
| 97 | 103 |
| 98 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc
kwise) { | 104 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc
kwise) { |
| 99 _arc(this, x, y, radius, startAngle, endAngle, anticlockwise); | 105 _arc(this, x, y, radius, startAngle, endAngle, anticlockwise); |
| 100 return; | 106 return; |
| 101 } | 107 } |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native; | 815 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native; |
| 810 | 816 |
| 811 void translate(num tx, num ty) { | 817 void translate(num tx, num ty) { |
| 812 _translate(this, tx, ty); | 818 _translate(this, tx, ty); |
| 813 return; | 819 return; |
| 814 } | 820 } |
| 815 static void _translate(receiver, tx, ty) native; | 821 static void _translate(receiver, tx, ty) native; |
| 816 | 822 |
| 817 String get typeName() { return "CanvasRenderingContext2D"; } | 823 String get typeName() { return "CanvasRenderingContext2D"; } |
| 818 } | 824 } |
| OLD | NEW |