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

Side by Side Diff: client/html/generated/html/dartium/SVGAnimationElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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
2 class _SVGAnimationElementImpl extends _SVGElementImpl implements SVGAnimationEl ement {
3 _SVGAnimationElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 SVGElement get targetElement() => _wrap(_ptr.targetElement);
6
7 num getCurrentTime() {
8 return _wrap(_ptr.getCurrentTime());
9 }
10
11 num getSimpleDuration() {
12 return _wrap(_ptr.getSimpleDuration());
13 }
14
15 num getStartTime() {
16 return _wrap(_ptr.getStartTime());
17 }
18
19 // From SVGTests
20
21 SVGStringList get requiredExtensions() => _wrap(_ptr.requiredExtensions);
22
23 SVGStringList get requiredFeatures() => _wrap(_ptr.requiredFeatures);
24
25 SVGStringList get systemLanguage() => _wrap(_ptr.systemLanguage);
26
27 bool hasExtension(String extension) {
28 return _wrap(_ptr.hasExtension(_unwrap(extension)));
29 }
30
31 // From SVGExternalResourcesRequired
32
33 SVGAnimatedBoolean get externalResourcesRequired() => _wrap(_ptr.externalResou rcesRequired);
34
35 // From ElementTimeControl
36
37 void beginElement() {
38 _ptr.beginElement();
39 return;
40 }
41
42 void beginElementAt(num offset) {
43 _ptr.beginElementAt(_unwrap(offset));
44 return;
45 }
46
47 void endElement() {
48 _ptr.endElement();
49 return;
50 }
51
52 void endElementAt(num offset) {
53 _ptr.endElementAt(_unwrap(offset));
54 return;
55 }
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698