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

Side by Side Diff: client/html/generated/src/wrapping/_SVGAnimationElementWrappingImplementation.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 // 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 SVGElementWrappingImplem entation implements SVGAnimationElement {
8 SVGAnimationElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 SVGElement get targetElement() { return LevelDom.wrapSVGElement(_ptr.targetEle ment); }
11
12 num getCurrentTime() {
13 return _ptr.getCurrentTime();
14 }
15
16 num getSimpleDuration() {
17 return _ptr.getSimpleDuration();
18 }
19
20 num getStartTime() {
21 return _ptr.getStartTime();
22 }
23
24 // From SVGTests
25
26 SVGStringList get requiredExtensions() { return LevelDom.wrapSVGStringList(_pt r.requiredExtensions); }
27
28 SVGStringList get requiredFeatures() { return LevelDom.wrapSVGStringList(_ptr. requiredFeatures); }
29
30 SVGStringList get systemLanguage() { return LevelDom.wrapSVGStringList(_ptr.sy stemLanguage); }
31
32 bool hasExtension(String extension) {
33 return _ptr.hasExtension(extension);
34 }
35
36 // From SVGExternalResourcesRequired
37
38 SVGAnimatedBoolean get externalResourcesRequired() { return LevelDom.wrapSVGAn imatedBoolean(_ptr.externalResourcesRequired); }
39
40 // From ElementTimeControl
41
42 void beginElement() {
43 _ptr.beginElement();
44 return;
45 }
46
47 void beginElementAt(num offset) {
48 _ptr.beginElementAt(offset);
49 return;
50 }
51
52 void endElement() {
53 _ptr.endElement();
54 return;
55 }
56
57 void endElementAt(num offset) {
58 _ptr.endElementAt(offset);
59 return;
60 }
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698