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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGDefsElementWrappingImplementation.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 _SVGDefsElementWrappingImplementation extends _SVGElementWrappingImplement ation implements SVGDefsElement {
8 _SVGDefsElementWrappingImplementation() : super() {}
9
10 static create__SVGDefsElementWrappingImplementation() native {
11 return new _SVGDefsElementWrappingImplementation();
12 }
13
14 // From SVGTests
15
16 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this); }
17 static SVGStringList _get_requiredExtensions(var _this) native;
18
19 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); }
20 static SVGStringList _get_requiredFeatures(var _this) native;
21
22 SVGStringList get systemLanguage() { return _get_systemLanguage(this); }
23 static SVGStringList _get_systemLanguage(var _this) native;
24
25 bool hasExtension(String extension) {
26 return _hasExtension(this, extension);
27 }
28 static bool _hasExtension(receiver, extension) native;
29
30 // From SVGLangSpace
31
32 String get xmllang() { return _get_xmllang(this); }
33 static String _get_xmllang(var _this) native;
34
35 void set xmllang(String value) { _set_xmllang(this, value); }
36 static void _set_xmllang(var _this, String value) native;
37
38 String get xmlspace() { return _get_xmlspace(this); }
39 static String _get_xmlspace(var _this) native;
40
41 void set xmlspace(String value) { _set_xmlspace(this, value); }
42 static void _set_xmlspace(var _this, String value) native;
43
44 // From SVGExternalResourcesRequired
45
46 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
47 static SVGAnimatedBoolean _get_externalResourcesRequired(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_SVGDefsElement(this); }
55 static CSSStyleDeclaration _get_style_SVGDefsElement(var _this) native;
56
57 CSSValue getPresentationAttribute(String name) {
58 return _getPresentationAttribute(this, name);
59 }
60 static CSSValue _getPresentationAttribute(receiver, name) native;
61
62 // From SVGTransformable
63
64 SVGAnimatedTransformList get transform() { return _get_transform(this); }
65 static SVGAnimatedTransformList _get_transform(var _this) native;
66
67 // From SVGLocatable
68
69 SVGElement get farthestViewportElement() { return _get_farthestViewportElement (this); }
70 static SVGElement _get_farthestViewportElement(var _this) native;
71
72 SVGElement get nearestViewportElement() { return _get_nearestViewportElement(t his); }
73 static SVGElement _get_nearestViewportElement(var _this) native;
74
75 SVGRect getBBox() {
76 return _getBBox(this);
77 }
78 static SVGRect _getBBox(receiver) native;
79
80 SVGMatrix getCTM() {
81 return _getCTM(this);
82 }
83 static SVGMatrix _getCTM(receiver) native;
84
85 SVGMatrix getScreenCTM() {
86 return _getScreenCTM(this);
87 }
88 static SVGMatrix _getScreenCTM(receiver) native;
89
90 SVGMatrix getTransformToElement(SVGElement element) {
91 return _getTransformToElement(this, element);
92 }
93 static SVGMatrix _getTransformToElement(receiver, element) native;
94
95 String get typeName() { return "SVGDefsElement"; }
96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698