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

Unified Diff: pkg/scheduled_test/lib/scheduled_process.dart

Issue 22927016: Remove the LineTransformer from dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changed one status file Created 7 years, 4 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 | « pkg/analyzer_experimental/bin/analyzer.dart ('k') | pkg/scheduled_test/test/scheduled_process_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/scheduled_test/lib/scheduled_process.dart
diff --git a/pkg/scheduled_test/lib/scheduled_process.dart b/pkg/scheduled_test/lib/scheduled_process.dart
index 3ff903c52b787787ee7f0dcac7c7b8d9f0f9c087..27ebc17ef285309637ab0ef3ab498507f81269ab 100644
--- a/pkg/scheduled_test/lib/scheduled_process.dart
+++ b/pkg/scheduled_test/lib/scheduled_process.dart
@@ -5,6 +5,7 @@
library scheduled_test.scheduled_process;
import 'dart:async';
+import 'dart:convert';
import 'dart:io';
import 'scheduled_test.dart';
@@ -203,7 +204,7 @@ class ScheduledProcess {
return chunk;
})
.transform(new StringDecoder(_encoding))
- .transform(new LineTransformer()));
+ .transform(new LineSplitter()));
}
/// Schedule an exception handler that will clean up the process and provide
« no previous file with comments | « pkg/analyzer_experimental/bin/analyzer.dart ('k') | pkg/scheduled_test/test/scheduled_process_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698