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

Unified Diff: sdk/lib/html/html_common/metadata.dart

Issue 18182010: Make html metadata follow the spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed DocsEditable, Experimental, Unstable Created 7 years, 6 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/html_common/metadata.dart
diff --git a/sdk/lib/html/html_common/metadata.dart b/sdk/lib/html/html_common/metadata.dart
index 82e0be95ab559b06aa92f9538d1aaeccc6a23733..9b0e56da5e68d3c721ee1619ae3bf4890db70bfc 100644
--- a/sdk/lib/html/html_common/metadata.dart
+++ b/sdk/lib/html/html_common/metadata.dart
@@ -38,7 +38,9 @@ class SupportedBrowser {
*
* * [W3C recommendation](http://en.wikipedia.org/wiki/W3C_recommendation)
*/
-class Experimental {}
+class Experimental {
+ const Experimental();
+}
/**
@@ -58,11 +60,15 @@ class DomName {
* Metadata that specifies that that member is editable through generated
* files.
*/
-class DocsEditable {}
+class DocsEditable {
+ const DocsEditable();
+}
/**
* Annotation that indicates that an API is not expected to change but has
* not undergone enough testing to be considered stable.
*/
-class Unstable {}
+class Unstable {
+ const Unstable();
+}
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698