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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 disabled;
5 5
6 void set disabled(bool value) native "this.disabled = value;"; 6 final String href;
7 7
8 String get href() native "return this.href;"; 8 final _MediaListJs media;
9 9
10 _MediaListJs get media() native "return this.media;"; 10 final _NodeJs ownerNode;
11 11
12 _NodeJs get ownerNode() native "return this.ownerNode;"; 12 final _StyleSheetJs parentStyleSheet;
13 13
14 _StyleSheetJs get parentStyleSheet() native "return this.parentStyleSheet;"; 14 final String title;
15 15
16 String get title() native "return this.title;"; 16 final String type;
17
18 String get type() native "return this.type;";
19 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698