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

Side by Side Diff: client/dom/generated/src/wrapping/_SVGAnimationElementWrappingImplementation.dart

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 _SVGAnimationElementWrappingImplementation extends _SVGElementWrappingImpl ementation implements SVGAnimationElement {
8 _SVGAnimationElementWrappingImplementation() : super() {}
9
10 static create__SVGAnimationElementWrappingImplementation() native {
11 return new _SVGAnimationElementWrappingImplementation();
12 }
13
14 SVGElement get targetElement() { return _get_targetElement(this); }
15 static SVGElement _get_targetElement(var _this) native;
16
17 num getCurrentTime() {
18 return _getCurrentTime(this);
19 }
20 static num _getCurrentTime(receiver) native;
21
22 num getSimpleDuration() {
23 return _getSimpleDuration(this);
24 }
25 static num _getSimpleDuration(receiver) native;
26
27 num getStartTime() {
28 return _getStartTime(this);
29 }
30 static num _getStartTime(receiver) native;
31
32 // From SVGTests
33
34 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this); }
35 static SVGStringList _get_requiredExtensions(var _this) native;
36
37 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); }
38 static SVGStringList _get_requiredFeatures(var _this) native;
39
40 SVGStringList get systemLanguage() { return _get_systemLanguage(this); }
41 static SVGStringList _get_systemLanguage(var _this) native;
42
43 bool hasExtension(String extension) {
44 return _hasExtension(this, extension);
45 }
46 static bool _hasExtension(receiver, extension) native;
47
48 // From SVGExternalResourcesRequired
49
50 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou rcesRequired(this); }
51 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
52
53 // From ElementTimeControl
54
55 void beginElement() {
56 _beginElement(this);
57 return;
58 }
59 static void _beginElement(receiver) native;
60
61 void beginElementAt(num offset) {
62 _beginElementAt(this, offset);
63 return;
64 }
65 static void _beginElementAt(receiver, offset) native;
66
67 void endElement() {
68 _endElement(this);
69 return;
70 }
71 static void _endElement(receiver) native;
72
73 void endElementAt(num offset) {
74 _endElementAt(this, offset);
75 return;
76 }
77 static void _endElementAt(receiver, offset) native;
78
79 String get typeName() { return "SVGAnimationElement"; }
80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698