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

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

Issue 9500002: Rename blahHandler to onBlah throughout dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 10 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/ListOutputStreamTest.dart ('k') | tests/standalone/src/ProcessExitNegativeTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/ProcessBrokenPipeTest.dart
diff --git a/tests/standalone/src/ProcessBrokenPipeTest.dart b/tests/standalone/src/ProcessBrokenPipeTest.dart
index 839f9d7f823ddd88f29590c6c9c002e35ac8673a..142496580a4241bc2e3b83723d6bd49f10d2b8e8 100644
--- a/tests/standalone/src/ProcessBrokenPipeTest.dart
+++ b/tests/standalone/src/ProcessBrokenPipeTest.dart
@@ -14,7 +14,7 @@ main() {
// Write to the stdin after the process is terminated to test
// writing to a broken pipe.
- process.exitHandler = (code) {
+ process.onExit = (code) {
Expect.isFalse(process.stdin.write([0]));
process.close();
};
« no previous file with comments | « tests/standalone/src/ListOutputStreamTest.dart ('k') | tests/standalone/src/ProcessExitNegativeTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698