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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGFEOffsetElementWrappingImplementation.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 _SVGFEOffsetElementWrappingImplementation extends _SVGElementWrappingImple mentation implements SVGFEOffsetElement {
8 _SVGFEOffsetElementWrappingImplementation() : super() {}
9
10 static create__SVGFEOffsetElementWrappingImplementation() native {
11 return new _SVGFEOffsetElementWrappingImplementation();
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 // From SVGFilterPrimitiveStandardAttributes
24
25 SVGAnimatedLength get height() { return _get_height(this); }
26 static SVGAnimatedLength _get_height(var _this) native;
27
28 SVGAnimatedString get result() { return _get_result(this); }
29 static SVGAnimatedString _get_result(var _this) native;
30
31 SVGAnimatedLength get width() { return _get_width(this); }
32 static SVGAnimatedLength _get_width(var _this) native;
33
34 SVGAnimatedLength get x() { return _get_x(this); }
35 static SVGAnimatedLength _get_x(var _this) native;
36
37 SVGAnimatedLength get y() { return _get_y(this); }
38 static SVGAnimatedLength _get_y(var _this) native;
39
40 // From SVGStylable
41
42 SVGAnimatedString get className() { return _get_className(this); }
43 static SVGAnimatedString _get_className(var _this) native;
44
45 CSSStyleDeclaration get style() { return _get_style_SVGFEOffsetElement(this); }
46 static CSSStyleDeclaration _get_style_SVGFEOffsetElement(var _this) native;
47
48 CSSValue getPresentationAttribute(String name) {
49 return _getPresentationAttribute(this, name);
50 }
51 static CSSValue _getPresentationAttribute(receiver, name) native;
52
53 String get typeName() { return "SVGFEOffsetElement"; }
54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698