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

Side by Side Diff: client/html/src/SVGElementInstanceWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 SVGElementInstanceWrappingImplementation extends EventTargetWrappingImplem entation implements SVGElementInstance {
8 SVGElementInstanceWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 SVGElementInstanceList get childNodes() { return LevelDom.wrapSVGElementInstan ceList(_ptr.childNodes); }
11
12 SVGElement get correspondingElement() { return LevelDom.wrapSVGElement(_ptr.co rrespondingElement); }
13
14 SVGUseElement get correspondingUseElement() { return LevelDom.wrapSVGUseElemen t(_ptr.correspondingUseElement); }
15
16 SVGElementInstance get firstChild() { return LevelDom.wrapSVGElementInstance(_ ptr.firstChild); }
17
18 SVGElementInstance get lastChild() { return LevelDom.wrapSVGElementInstance(_p tr.lastChild); }
19
20 SVGElementInstance get nextSibling() { return LevelDom.wrapSVGElementInstance( _ptr.nextSibling); }
21
22 SVGElementInstance get parentNode() { return LevelDom.wrapSVGElementInstance(_ ptr.parentNode); }
23
24 SVGElementInstance get previousSibling() { return LevelDom.wrapSVGElementInsta nce(_ptr.previousSibling); }
25
26 }
OLDNEW
« no previous file with comments | « client/html/src/SVGElementInstance.dart ('k') | client/html/src/WindowWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698