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

Side by Side Diff: client/dom/generated/src/frog/StyleSheet.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 StyleSheetJs extends DOMTypeJs implements StyleSheet native "*StyleSheet" { 2 class _StyleSheetJs extends _DOMTypeJs implements StyleSheet native "*StyleSheet " {
3 3
4 bool get disabled() native "return this.disabled;"; 4 bool get disabled() native "return this.disabled;";
5 5
6 void set disabled(bool value) native "this.disabled = value;"; 6 void set disabled(bool value) native "this.disabled = value;";
7 7
8 String get href() native "return this.href;"; 8 String get href() native "return this.href;";
9 9
10 MediaListJs get media() native "return this.media;"; 10 _MediaListJs get media() native "return this.media;";
11 11
12 NodeJs get ownerNode() native "return this.ownerNode;"; 12 _NodeJs get ownerNode() native "return this.ownerNode;";
13 13
14 StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; 14 _StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;";
15 15
16 String get title() native "return this.title;"; 16 String get title() native "return this.title;";
17 17
18 String get type() native "return this.type;"; 18 String get type() native "return this.type;";
19 } 19 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/StyleMedia.dart ('k') | client/dom/generated/src/frog/StyleSheetList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698