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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGFEImageElementWrappingImplementation.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 _SVGFEImageElementWrappingImplementation extends _SVGElementWrappingImplem entation implements SVGFEImageElement {
8 _SVGFEImageElementWrappingImplementation() : super() {}
9
10 static create__SVGFEImageElementWrappingImplementation() native {
11 return new _SVGFEImageElementWrappingImplementation();
12 }
13
14 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserv eAspectRatio(this); }
15 static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) nati ve;
16
17 // From SVGURIReference
18
19 SVGAnimatedString get href() { return _get_href(this); }
20 static SVGAnimatedString _get_href(var _this) native;
21
22 // From SVGLangSpace
23
24 String get xmllang() { return _get_xmllang(this); }
25 static String _get_xmllang(var _this) native;
26
27 void set xmllang(String value) { _set_xmllang(this, value); }
28 static void _set_xmllang(var _this, String value) native;
29
30 String get xmlspace() { return _get_xmlspace(this); }
31 static String _get_xmlspace(var _this) native;
32
33 void set xmlspace(String value) { _set_xmlspace(this, value); }
34 static void _set_xmlspace(var _this, String value) native;
35
36 // From SVGExternalResourcesRequired
37
38 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
39 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
40
41 // From SVGFilterPrimitiveStandardAttributes
42
43 SVGAnimatedLength get height() { return _get_height(this); }
44 static SVGAnimatedLength _get_height(var _this) native;
45
46 SVGAnimatedString get result() { return _get_result(this); }
47 static SVGAnimatedString _get_result(var _this) native;
48
49 SVGAnimatedLength get width() { return _get_width(this); }
50 static SVGAnimatedLength _get_width(var _this) native;
51
52 SVGAnimatedLength get x() { return _get_x(this); }
53 static SVGAnimatedLength _get_x(var _this) native;
54
55 SVGAnimatedLength get y() { return _get_y(this); }
56 static SVGAnimatedLength _get_y(var _this) native;
57
58 // From SVGStylable
59
60 SVGAnimatedString get className() { return _get_className(this); }
61 static SVGAnimatedString _get_className(var _this) native;
62
63 CSSStyleDeclaration get style() { return _get_style_SVGFEImageElement(this); }
64 static CSSStyleDeclaration _get_style_SVGFEImageElement(var _this) native;
65
66 CSSValue getPresentationAttribute(String name) {
67 return _getPresentationAttribute(this, name);
68 }
69 static CSSValue _getPresentationAttribute(receiver, name) native;
70
71 String get typeName() { return "SVGFEImageElement"; }
72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698