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

Unified Diff: tests/standalone/src/ProcessStdoutTest.dart

Issue 8359033: Rename getters in process object (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « tests/standalone/src/ProcessStderrTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/ProcessStdoutTest.dart
diff --git a/tests/standalone/src/ProcessStdoutTest.dart b/tests/standalone/src/ProcessStdoutTest.dart
index 9ef5e4c83c62e200438a9359fecc44eabfaf2fae..51250d1a2c41d0a7dfd55f79a111c45ea2351d8a 100644
--- a/tests/standalone/src/ProcessStdoutTest.dart
+++ b/tests/standalone/src/ProcessStdoutTest.dart
@@ -22,8 +22,8 @@ class ProcessStdoutTest {
}
buffer[BUFFERSIZE - 1] = 10;
- SocketInputStream input = process.stdoutStream;
- SocketOutputStream output = process.stdinStream;
+ InputStream input = process.stdout;
+ OutputStream output = process.stdin;
process.start();
« no previous file with comments | « tests/standalone/src/ProcessStderrTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698