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

Side by Side Diff: client/dom/generated/src/wrapping/_CanvasRenderingContext2DWrappingImplementation.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage 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 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
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 num get webkitLineDashOffset() { return _get__CanvasRenderingContext2D_webkitL ineDashOffset(this); }
93 static num _get__CanvasRenderingContext2D_webkitLineDashOffset(var _this) nati ve;
94
95 void set webkitLineDashOffset(num value) { _set__CanvasRenderingContext2D_webk itLineDashOffset(this, value); }
96 static void _set__CanvasRenderingContext2D_webkitLineDashOffset(var _this, num value) native;
97
92 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise) { 98 void arc(num x, num y, num radius, num startAngle, num endAngle, bool anticloc kwise) {
93 _arc(this, x, y, radius, startAngle, endAngle, anticlockwise); 99 _arc(this, x, y, radius, startAngle, endAngle, anticlockwise);
94 return; 100 return;
95 } 101 }
96 static void _arc(receiver, x, y, radius, startAngle, endAngle, anticlockwise) native; 102 static void _arc(receiver, x, y, radius, startAngle, endAngle, anticlockwise) native;
97 103
98 void arcTo(num x1, num y1, num x2, num y2, num radius) { 104 void arcTo(num x1, num y1, num x2, num y2, num radius) {
99 _arcTo(this, x1, y1, x2, y2, radius); 105 _arcTo(this, x1, y1, x2, y2, radius);
100 return; 106 return;
101 } 107 }
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native; 809 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native;
804 810
805 void translate(num tx, num ty) { 811 void translate(num tx, num ty) {
806 _translate(this, tx, ty); 812 _translate(this, tx, ty);
807 return; 813 return;
808 } 814 }
809 static void _translate(receiver, tx, ty) native; 815 static void _translate(receiver, tx, ty) native;
810 816
811 String get typeName() { return "CanvasRenderingContext2D"; } 817 String get typeName() { return "CanvasRenderingContext2D"; }
812 } 818 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698