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

Unified Diff: pkg/analysis_server/test/performance/instrumentation_input_converter.dart

Issue 1202843010: performance measurement: generate report (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 5 years, 6 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
Index: pkg/analysis_server/test/performance/instrumentation_input_converter.dart
diff --git a/pkg/analysis_server/test/performance/instrumentation_input_converter.dart b/pkg/analysis_server/test/performance/instrumentation_input_converter.dart
index b0f9c6185eec9cde7d744b5616da338dce1defd8..32974c2333a5d71e2c458bc5b932f72a5c434c37 100644
--- a/pkg/analysis_server/test/performance/instrumentation_input_converter.dart
+++ b/pkg/analysis_server/test/performance/instrumentation_input_converter.dart
@@ -65,8 +65,7 @@ class InstrumentationInputConverter extends CommonInputConverter {
return convertRequest(decodeJson(line, fields[2]));
} else if (opCode == InstrumentationService.TAG_RESPONSE) {
// 1434096937454:Res:{"id"::"0","result"::{"version"::"1.7.0"}}
- recordResponse(decodeJson(line, fields[2]));
- return null;
+ return convertResponse(decodeJson(line, fields[2]));
} else if (opCode == InstrumentationService.TAG_ANALYSIS_TASK) {
// 1434096943208:Task:/Users/
return null;

Powered by Google App Engine
This is Rietveld 408576698