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

Unified Diff: tools/testing/dart/status_file_parser.dart

Issue 9570004: Revert "Rename blahHandler to onBlah throughout dart:io." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/TestingServer.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/status_file_parser.dart
diff --git a/tools/testing/dart/status_file_parser.dart b/tools/testing/dart/status_file_parser.dart
index 89cd4c4eb97c77e40e65f0654927b830c1babe55..58e24831d55f2c2d489390d7f14cbcd02d3cc9b1 100644
--- a/tools/testing/dart/status_file_parser.dart
+++ b/tools/testing/dart/status_file_parser.dart
@@ -66,7 +66,7 @@ void ReadConfigurationInto(path, sections, onDone) {
sections.add(current);
String prefix = "";
- lines.onLine = () {
+ lines.lineHandler = () {
String line;
while ((line = lines.readLine()) != null) {
Match match = StripComment.firstMatch(line);
@@ -106,7 +106,7 @@ void ReadConfigurationInto(path, sections, onDone) {
}
};
- lines.onClosed = () {
+ lines.closeHandler = () {
onDone();
};
}
« no previous file with comments | « tests/standalone/src/TestingServer.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698