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

Side by Side Diff: client/dom/generated/src/frog/SVGElementInstance.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
1 1
2 class SVGElementInstanceJs extends DOMTypeJs implements SVGElementInstance nativ e "*SVGElementInstance" { 2 class _SVGElementInstanceJs extends _DOMTypeJs implements SVGElementInstance nat ive "*SVGElementInstance" {
3 3
4 SVGElementInstanceListJs get childNodes() native "return this.childNodes;"; 4 _SVGElementInstanceListJs get childNodes() native "return this.childNodes;";
5 5
6 SVGElementJs get correspondingElement() native "return this.correspondingEleme nt;"; 6 _SVGElementJs get correspondingElement() native "return this.correspondingElem ent;";
7 7
8 SVGUseElementJs get correspondingUseElement() native "return this.correspondin gUseElement;"; 8 _SVGUseElementJs get correspondingUseElement() native "return this.correspondi ngUseElement;";
9 9
10 SVGElementInstanceJs get firstChild() native "return this.firstChild;"; 10 _SVGElementInstanceJs get firstChild() native "return this.firstChild;";
11 11
12 SVGElementInstanceJs get lastChild() native "return this.lastChild;"; 12 _SVGElementInstanceJs get lastChild() native "return this.lastChild;";
13 13
14 SVGElementInstanceJs get nextSibling() native "return this.nextSibling;"; 14 _SVGElementInstanceJs get nextSibling() native "return this.nextSibling;";
15 15
16 SVGElementInstanceJs get parentNode() native "return this.parentNode;"; 16 _SVGElementInstanceJs get parentNode() native "return this.parentNode;";
17 17
18 SVGElementInstanceJs get previousSibling() native "return this.previousSibling ;"; 18 _SVGElementInstanceJs get previousSibling() native "return this.previousSiblin g;";
19 19
20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
21 21
22 bool dispatchEvent(EventJs event) native; 22 bool dispatchEvent(_EventJs event) native;
23 23
24 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 24 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGElement.dart ('k') | client/dom/generated/src/frog/SVGElementInstanceList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698