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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 10993006: Changing CSSClassSet from isFrozen to frozen for API consistency. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index dc8db31d9c58e5176022cbd72a00463d705c7494..89c35d1ac17a7eca61b4e8e00abfb509cd0f462d 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -11752,7 +11752,7 @@ class _FrozenCSSClassSet extends _CssClassSet {
}
Set<String> _read() => new Set<String>();
- bool get isFrozen => true;
+ bool get frozen => true;
}
class _DocumentFragmentImpl extends _NodeImpl implements DocumentFragment {
@@ -12433,7 +12433,7 @@ abstract class CSSClassSet implements Set<String> {
* Returns [:true:] classes cannot be added or removed from this
* [:CSSClassSet:].
*/
- bool get isFrozen;
+ bool get frozen;
}
/// @domName Element
@@ -13376,7 +13376,7 @@ class _CssClassSet implements CSSClassSet {
bool isEmpty() => _read().isEmpty();
- bool get isFrozen => false;
+ bool get frozen => false;
int get length =>_read().length;
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698