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

Unified Diff: client/dom/generated/src/frog/CSSRule.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/CSSRule.dart
diff --git a/client/dom/generated/src/frog/CSSRule.dart b/client/dom/generated/src/frog/CSSRule.dart
index c5e1307452f2af605c1d2d90aae263ae03db1968..1185e294f289b3a88eae34a302e845b3780b49e3 100644
--- a/client/dom/generated/src/frog/CSSRule.dart
+++ b/client/dom/generated/src/frog/CSSRule.dart
@@ -21,13 +21,15 @@ class CSSRule native "*CSSRule" {
static final int WEBKIT_REGION_RULE = 10;
- String cssText;
+ String get cssText() native "return this.cssText;";
- CSSRule parentRule;
+ void set cssText(String value) native "this.cssText = value;";
- CSSStyleSheet parentStyleSheet;
+ CSSRule get parentRule() native "return this.parentRule;";
- int type;
+ CSSStyleSheet get parentStyleSheet() native "return this.parentStyleSheet;";
+
+ int get type() native "return this.type;";
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/CSSPrimitiveValue.dart ('k') | client/dom/generated/src/frog/CSSRuleList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698