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

Unified Diff: samples/total/src/Dartc.dart

Issue 8292003: Total now reads mortgage sample from server (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Process stdout and stderr renames Created 9 years, 2 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 | « client/samples/total/src/Total.dart ('k') | samples/total/src/GetSpreadsheet.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/total/src/Dartc.dart
diff --git a/samples/total/src/Dartc.dart b/samples/total/src/Dartc.dart
index 156db719222bc2a4e2587414be31746b33889e98..8067ff3610a0ce7e9ffedc0583ad23f96d9c0936 100644
--- a/samples/total/src/Dartc.dart
+++ b/samples/total/src/Dartc.dart
@@ -54,8 +54,8 @@ class Dartc {
// TODO(rchandia) increase read size when stream handling works better
int BUFSIZE = 1;
- _readAll(false, compiler.stdoutStream, new List<int>(BUFSIZE), messages);
- _readAll(false, compiler.stderrStream, new List<int>(BUFSIZE), messages);
+ _readAll(false, compiler.stdout, new List<int>(BUFSIZE), messages);
+ _readAll(false, compiler.stderr, new List<int>(BUFSIZE), messages);
}
compiler.close();
callback(status, messages.toString());
« no previous file with comments | « client/samples/total/src/Total.dart ('k') | samples/total/src/GetSpreadsheet.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698