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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGGradientElementWrappingImplementation.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 _SVGGradientElementWrappingImplementation extends _SVGElementWrappingImple mentation implements SVGGradientElement {
8 _SVGGradientElementWrappingImplementation() : super() {}
9
10 static create__SVGGradientElementWrappingImplementation() native {
11 return new _SVGGradientElementWrappingImplementation();
12 }
13
14 SVGAnimatedTransformList get gradientTransform() { return _get_gradientTransfo rm(this); }
15 static SVGAnimatedTransformList _get_gradientTransform(var _this) native;
16
17 SVGAnimatedEnumeration get gradientUnits() { return _get_gradientUnits(this); }
18 static SVGAnimatedEnumeration _get_gradientUnits(var _this) native;
19
20 SVGAnimatedEnumeration get spreadMethod() { return _get_spreadMethod(this); }
21 static SVGAnimatedEnumeration _get_spreadMethod(var _this) native;
22
23 // From SVGURIReference
24
25 SVGAnimatedString get href() { return _get_href(this); }
26 static SVGAnimatedString _get_href(var _this) native;
27
28 // From SVGExternalResourcesRequired
29
30 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
31 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
32
33 // From SVGStylable
34
35 SVGAnimatedString get className() { return _get_className(this); }
36 static SVGAnimatedString _get_className(var _this) native;
37
38 CSSStyleDeclaration get style() { return _get_style_SVGGradientElement(this); }
39 static CSSStyleDeclaration _get_style_SVGGradientElement(var _this) native;
40
41 CSSValue getPresentationAttribute(String name) {
42 return _getPresentationAttribute(this, name);
43 }
44 static CSSValue _getPresentationAttribute(receiver, name) native;
45
46 String get typeName() { return "SVGGradientElement"; }
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698