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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _SVGFEDropShadowElementWrappingImplementation extends _SVGElementWrappingI mplementation implements SVGFEDropShadowElement {
8 _SVGFEDropShadowElementWrappingImplementation() : super() {}
9
10 static create__SVGFEDropShadowElementWrappingImplementation() native {
11 return new _SVGFEDropShadowElementWrappingImplementation();
12 }
13
14 SVGAnimatedNumber get dx() { return _get_dx(this); }
15 static SVGAnimatedNumber _get_dx(var _this) native;
16
17 SVGAnimatedNumber get dy() { return _get_dy(this); }
18 static SVGAnimatedNumber _get_dy(var _this) native;
19
20 SVGAnimatedString get in1() { return _get_in1(this); }
21 static SVGAnimatedString _get_in1(var _this) native;
22
23 SVGAnimatedNumber get stdDeviationX() { return _get_stdDeviationX(this); }
24 static SVGAnimatedNumber _get_stdDeviationX(var _this) native;
25
26 SVGAnimatedNumber get stdDeviationY() { return _get_stdDeviationY(this); }
27 static SVGAnimatedNumber _get_stdDeviationY(var _this) native;
28
29 void setStdDeviation(num stdDeviationX, num stdDeviationY) {
30 _setStdDeviation(this, stdDeviationX, stdDeviationY);
31 return;
32 }
33 static void _setStdDeviation(receiver, stdDeviationX, stdDeviationY) native;
34
35 // From SVGFilterPrimitiveStandardAttributes
36
37 SVGAnimatedLength get height() { return _get_height(this); }
38 static SVGAnimatedLength _get_height(var _this) native;
39
40 SVGAnimatedString get result() { return _get_result(this); }
41 static SVGAnimatedString _get_result(var _this) native;
42
43 SVGAnimatedLength get width() { return _get_width(this); }
44 static SVGAnimatedLength _get_width(var _this) native;
45
46 SVGAnimatedLength get x() { return _get_x(this); }
47 static SVGAnimatedLength _get_x(var _this) native;
48
49 SVGAnimatedLength get y() { return _get_y(this); }
50 static SVGAnimatedLength _get_y(var _this) native;
51
52 // From SVGStylable
53
54 SVGAnimatedString get className() { return _get_className(this); }
55 static SVGAnimatedString _get_className(var _this) native;
56
57 CSSStyleDeclaration get style() { return _get_style_SVGFEDropShadowElement(thi s); }
58 static CSSStyleDeclaration _get_style_SVGFEDropShadowElement(var _this) native ;
59
60 CSSValue getPresentationAttribute(String name) {
61 return _getPresentationAttribute(this, name);
62 }
63 static CSSValue _getPresentationAttribute(receiver, name) native;
64
65 String get typeName() { return "SVGFEDropShadowElement"; }
66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698