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

Side by Side Diff: client/dom/generated/src/frog/HTMLScriptElement.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 HTMLScriptElementJs extends HTMLElementJs implements HTMLScriptElement nat ive "*HTMLScriptElement" { 2 class _HTMLScriptElementJs extends _HTMLElementJs implements HTMLScriptElement n ative "*HTMLScriptElement" {
3 3
4 bool get async() native "return this.async;"; 4 bool get async() native "return this.async;";
5 5
6 void set async(bool value) native "this.async = value;"; 6 void set async(bool value) native "this.async = value;";
7 7
8 String get charset() native "return this.charset;"; 8 String get charset() native "return this.charset;";
9 9
10 void set charset(String value) native "this.charset = value;"; 10 void set charset(String value) native "this.charset = value;";
11 11
12 bool get defer() native "return this.defer;"; 12 bool get defer() native "return this.defer;";
(...skipping 13 matching lines...) Expand all
26 void set src(String value) native "this.src = value;"; 26 void set src(String value) native "this.src = value;";
27 27
28 String get text() native "return this.text;"; 28 String get text() native "return this.text;";
29 29
30 void set text(String value) native "this.text = value;"; 30 void set text(String value) native "this.text = value;";
31 31
32 String get type() native "return this.type;"; 32 String get type() native "return this.type;";
33 33
34 void set type(String value) native "this.type = value;"; 34 void set type(String value) native "this.type = value;";
35 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLQuoteElement.dart ('k') | client/dom/generated/src/frog/HTMLSelectElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698