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

Unified Diff: utils/apidoc/apidoc.dart

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index 664c4fffdf4bd7350306f21149009606e0be4f08..fe0ee3804adc1de51b4c97683e36627e86bcd1e2 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -454,8 +454,8 @@ class Apidoc extends doc.Dartdoc {
/**
* Returns additional documentation for [member], linking it to the
- * corresponding `dart:html` or `dart:dom` [Member](s). If [member] is not in
- * `dart:html` or `dart:dom`, returns no additional documentation.
+ * corresponding `dart:html` or `dart:dom_deprecated` [Member](s). If [member] is not in
+ * `dart:html` or `dart:dom_deprecated`, returns no additional documentation.
*/
String getMemberDoc(Member member) {
if (_diff.domToHtml.containsKey(member)) {
@@ -475,7 +475,7 @@ class Apidoc extends doc.Dartdoc {
return
'''
<p class="correspond">This $phrase $domMembers in the
- ${a("dom.html", "dart:dom")} library.</p>
+ ${a("dom.html", "dart:dom_deprecated")} library.</p>
''';
} else {
return '';
@@ -484,8 +484,8 @@ class Apidoc extends doc.Dartdoc {
/**
* Returns additional Markdown-formatted documentation for [type], linking it
- * to the corresponding `dart:html` or `dart:dom` [Type](s). If [type] is not
- * in `dart:html` or `dart:dom`, returns no additional documentation.
+ * to the corresponding `dart:html` or `dart:dom_deprecated` [Type](s). If [type] is not
+ * in `dart:html` or `dart:dom_deprecated`, returns no additional documentation.
*/
String getTypeDoc(Type type) {
final htmlTypes = _diff.domTypesToHtml[type];
@@ -504,7 +504,7 @@ class Apidoc extends doc.Dartdoc {
return
'''
<p class="correspond">This corresponds to $domTypesText in the
- ${a("dom.html", "dart:dom")} library.</p>
+ ${a("dom.html", "dart:dom_deprecated")} library.</p>
''';
}

Powered by Google App Engine
This is Rietveld 408576698