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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGFETurbulenceElementWrappingImplementation.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 _SVGFETurbulenceElementWrappingImplementation extends _SVGElementWrappingI mplementation implements SVGFETurbulenceElement {
8 _SVGFETurbulenceElementWrappingImplementation() : super() {}
9
10 static create__SVGFETurbulenceElementWrappingImplementation() native {
11 return new _SVGFETurbulenceElementWrappingImplementation();
12 }
13
14 SVGAnimatedNumber get baseFrequencyX() { return _get_baseFrequencyX(this); }
15 static SVGAnimatedNumber _get_baseFrequencyX(var _this) native;
16
17 SVGAnimatedNumber get baseFrequencyY() { return _get_baseFrequencyY(this); }
18 static SVGAnimatedNumber _get_baseFrequencyY(var _this) native;
19
20 SVGAnimatedInteger get numOctaves() { return _get_numOctaves(this); }
21 static SVGAnimatedInteger _get_numOctaves(var _this) native;
22
23 SVGAnimatedNumber get seed() { return _get_seed(this); }
24 static SVGAnimatedNumber _get_seed(var _this) native;
25
26 SVGAnimatedEnumeration get stitchTiles() { return _get_stitchTiles(this); }
27 static SVGAnimatedEnumeration _get_stitchTiles(var _this) native;
28
29 SVGAnimatedEnumeration get type() { return _get_type(this); }
30 static SVGAnimatedEnumeration _get_type(var _this) native;
31
32 // From SVGFilterPrimitiveStandardAttributes
33
34 SVGAnimatedLength get height() { return _get_height(this); }
35 static SVGAnimatedLength _get_height(var _this) native;
36
37 SVGAnimatedString get result() { return _get_result(this); }
38 static SVGAnimatedString _get_result(var _this) native;
39
40 SVGAnimatedLength get width() { return _get_width(this); }
41 static SVGAnimatedLength _get_width(var _this) native;
42
43 SVGAnimatedLength get x() { return _get_x(this); }
44 static SVGAnimatedLength _get_x(var _this) native;
45
46 SVGAnimatedLength get y() { return _get_y(this); }
47 static SVGAnimatedLength _get_y(var _this) native;
48
49 // From SVGStylable
50
51 SVGAnimatedString get className() { return _get_className(this); }
52 static SVGAnimatedString _get_className(var _this) native;
53
54 CSSStyleDeclaration get style() { return _get_style_SVGFETurbulenceElement(thi s); }
55 static CSSStyleDeclaration _get_style_SVGFETurbulenceElement(var _this) native ;
56
57 CSSValue getPresentationAttribute(String name) {
58 return _getPresentationAttribute(this, name);
59 }
60 static CSSValue _getPresentationAttribute(receiver, name) native;
61
62 String get typeName() { return "SVGFETurbulenceElement"; }
63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698