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

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

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 11 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 | 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 {
11 return new _CanvasRenderingContext2DWrappingImplementation(); 11 return new _CanvasRenderingContext2DWrappingImplementation();
12 } 12 }
13 13
14 Object get fillStyle() { return _get_fillStyle(this); } 14 Dynamic get fillStyle() { return _get_fillStyle(this); }
15 static Object _get_fillStyle(var _this) native; 15 static Dynamic _get_fillStyle(var _this) native;
16 16
17 void set fillStyle(Object value) { _set_fillStyle(this, value); } 17 void set fillStyle(Dynamic value) { _set_fillStyle(this, value); }
18 static void _set_fillStyle(var _this, Object value) native; 18 static void _set_fillStyle(var _this, Dynamic value) native;
19 19
20 String get font() { return _get_font(this); } 20 String get font() { return _get_font(this); }
21 static String _get_font(var _this) native; 21 static String _get_font(var _this) native;
22 22
23 void set font(String value) { _set_font(this, value); } 23 void set font(String value) { _set_font(this, value); }
24 static void _set_font(var _this, String value) native; 24 static void _set_font(var _this, String value) native;
25 25
26 num get globalAlpha() { return _get_globalAlpha(this); } 26 num get globalAlpha() { return _get_globalAlpha(this); }
27 static num _get_globalAlpha(var _this) native; 27 static num _get_globalAlpha(var _this) native;
28 28
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 void set shadowOffsetX(num value) { _set_shadowOffsetX(this, value); } 77 void set shadowOffsetX(num value) { _set_shadowOffsetX(this, value); }
78 static void _set_shadowOffsetX(var _this, num value) native; 78 static void _set_shadowOffsetX(var _this, num value) native;
79 79
80 num get shadowOffsetY() { return _get_shadowOffsetY(this); } 80 num get shadowOffsetY() { return _get_shadowOffsetY(this); }
81 static num _get_shadowOffsetY(var _this) native; 81 static num _get_shadowOffsetY(var _this) native;
82 82
83 void set shadowOffsetY(num value) { _set_shadowOffsetY(this, value); } 83 void set shadowOffsetY(num value) { _set_shadowOffsetY(this, value); }
84 static void _set_shadowOffsetY(var _this, num value) native; 84 static void _set_shadowOffsetY(var _this, num value) native;
85 85
86 Object get strokeStyle() { return _get_strokeStyle(this); } 86 Dynamic get strokeStyle() { return _get_strokeStyle(this); }
87 static Object _get_strokeStyle(var _this) native; 87 static Dynamic _get_strokeStyle(var _this) native;
88 88
89 void set strokeStyle(Object value) { _set_strokeStyle(this, value); } 89 void set strokeStyle(Dynamic value) { _set_strokeStyle(this, value); }
90 static void _set_strokeStyle(var _this, Object value) native; 90 static void _set_strokeStyle(var _this, Dynamic value) native;
91 91
92 String get textAlign() { return _get_textAlign(this); } 92 String get textAlign() { return _get_textAlign(this); }
93 static String _get_textAlign(var _this) native; 93 static String _get_textAlign(var _this) native;
94 94
95 void set textAlign(String value) { _set_textAlign(this, value); } 95 void set textAlign(String value) { _set_textAlign(this, value); }
96 static void _set_textAlign(var _this, String value) native; 96 static void _set_textAlign(var _this, String value) native;
97 97
98 String get textBaseline() { return _get_textBaseline(this); } 98 String get textBaseline() { return _get_textBaseline(this); }
99 static String _get_textBaseline(var _this) native; 99 static String _get_textBaseline(var _this) native;
100 100
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native; 819 static void _transform(receiver, m11, m12, m21, m22, dx, dy) native;
820 820
821 void translate(num tx, num ty) { 821 void translate(num tx, num ty) {
822 _translate(this, tx, ty); 822 _translate(this, tx, ty);
823 return; 823 return;
824 } 824 }
825 static void _translate(receiver, tx, ty) native; 825 static void _translate(receiver, tx, ty) native;
826 826
827 String get typeName() { return "CanvasRenderingContext2D"; } 827 String get typeName() { return "CanvasRenderingContext2D"; }
828 } 828 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698