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

Unified Diff: lib/dom/src/ReadyState.dart

Issue 10880068: - Change "static final" to "static const" in the lib/ directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « lib/dom/src/KeyName.dart ('k') | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/src/ReadyState.dart
===================================================================
--- lib/dom/src/ReadyState.dart (revision 11400)
+++ lib/dom/src/ReadyState.dart (working copy)
@@ -9,16 +9,16 @@
/**
* Indicates the document is still loading and parsing.
*/
- static final String LOADING = "loading";
+ static const String LOADING = "loading";
/**
* Indicates the document is finished parsing but is still loading
* subresources.
*/
- static final String INTERACTIVE = "interactive";
+ static const String INTERACTIVE = "interactive";
/**
* Indicates the document and all subresources have been loaded.
*/
- static final String COMPLETE = "complete";
+ static const String COMPLETE = "complete";
}
« no previous file with comments | « lib/dom/src/KeyName.dart ('k') | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698