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

Unified Diff: tools/testing/dart/status_file_parser.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/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 58e24831d55f2c2d489390d7f14cbcd02d3cc9b1..89cd4c4eb97c77e40e65f0654927b830c1babe55 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.lineHandler = () {
+ lines.onLine = () {
String line;
while ((line = lines.readLine()) != null) {
Match match = StripComment.firstMatch(line);
@@ -106,7 +106,7 @@ void ReadConfigurationInto(path, sections, onDone) {
}
};
- lines.closeHandler = () {
+ lines.onClosed = () {
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