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

Unified Diff: utils/apidoc/html_diff.dart

Issue 15643004: Fix breakages from r23266 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/html_diff.dart
diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
index 22bbfb6f25e332d9cd6e3dc6188e9a6309260252..926d10f3245a52298e3cdc77030c55357606660e 100644
--- a/utils/apidoc/html_diff.dart
+++ b/utils/apidoc/html_diff.dart
@@ -24,11 +24,11 @@ import '../../sdk/lib/html/html_common/metadata.dart';
// TODO(amouravski): There is currently magic that looks at dart:* libraries
// rather than the declared library names. This changed due to recent syntax
// changes. We should only need to look at the library 'html'.
-const List<Uri> HTML_LIBRARY_URIS = const [
- const Uri.fromComponents(scheme: 'dart', path: 'html'),
- const Uri.fromComponents(scheme: 'dart', path: 'indexed_db'),
- const Uri.fromComponents(scheme: 'dart', path: 'svg'),
- const Uri.fromComponents(scheme: 'dart', path: 'web_audio')];
+List<Uri> HTML_LIBRARY_URIS = [
floitsch 2013/05/28 14:50:40 final
Søren Gjesse 2013/05/28 15:15:55 Done.
+ new Uri(scheme: 'dart', path: 'html'),
+ new Uri(scheme: 'dart', path: 'indexed_db'),
+ new Uri(scheme: 'dart', path: 'svg'),
+ new Uri(scheme: 'dart', path: 'web_audio')];
/**
* A class for computing a many-to-many mapping between the types and

Powered by Google App Engine
This is Rietveld 408576698