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

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: Fixes from review 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
« no previous file with comments | « tests/isolate/v2_compute_this_script_browser_test.dart ('k') | utils/apidoc/html_diff.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index 664c4fffdf4bd7350306f21149009606e0be4f08..9c471f7576d99f7630cf91c53cb0f42eb1139e04 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -454,8 +454,9 @@ 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 +476,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 '';
@@ -483,9 +484,10 @@ 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.
+ * Returns additional Markdown-formatted documentation for [type],
+ * linking it 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 +506,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>
''';
}
« no previous file with comments | « tests/isolate/v2_compute_this_script_browser_test.dart ('k') | utils/apidoc/html_diff.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698