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

Unified Diff: utils/apidoc/html_diff.dart

Issue 10938010: Switch from interfaces to abstract classes in dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Add test binaries. Created 8 years, 3 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 | « utils/apidoc/apidoc.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/html_diff.dart
diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
index 86c8549c0e3a725e62a8daf7c7a093327a752702..71aec260cd6c757906d47de94491e97a341e09ff 100644
--- a/utils/apidoc/html_diff.dart
+++ b/utils/apidoc/html_diff.dart
@@ -68,8 +68,8 @@ class HtmlDiff {
* calling [HtmlDiff.run].
*/
static void initialize(Path libDir) {
- _compilation = new Compilation.library(
- const <Path>[const Path(HTML_LIBRARY_NAME)], libDir);
+ _compilation = new Compilation.library(<Path>[new Path(HTML_LIBRARY_NAME)],
+ libDir);
_mirrors = _compilation.mirrors;
}
« no previous file with comments | « utils/apidoc/apidoc.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698