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

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

Issue 23604010: Remove Timeout entries in status files for ie9/ie10 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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 | « dart/tests/lib/lib.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/browser_controller.dart
diff --git a/dart/tools/testing/dart/browser_controller.dart b/dart/tools/testing/dart/browser_controller.dart
index 643465ea0731a2cd331e641924fa3904be777d47..07afc5a7b1494eaf5c5ad875433ddb329bad4dae 100644
--- a/dart/tools/testing/dart/browser_controller.dart
+++ b/dart/tools/testing/dart/browser_controller.dart
@@ -949,6 +949,9 @@ class BrowserTestingServer {
void handleStarted(HttpRequest request, String browserId, var testId) {
StringBuffer buffer = new StringBuffer();
+ // If an error occurs while receiving the data from the request stream,
+ // we don't handle it specially. We can safely ignore it, since the started
+ // events are not crucial.
request.transform(UTF8.decoder).listen((data) {
buffer.write(data);
}, onDone: () {
« no previous file with comments | « dart/tests/lib/lib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698