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

Unified Diff: pkg/analysis_server/lib/src/channel/channel.dart

Issue 951423002: Add more performance tags. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
Index: pkg/analysis_server/lib/src/channel/channel.dart
diff --git a/pkg/analysis_server/lib/src/channel/channel.dart b/pkg/analysis_server/lib/src/channel/channel.dart
index 71ee75e8409e9cec56192379a5d1b680031931fb..b90b282629b949f686e08618d04deb7607a9ca56 100644
--- a/pkg/analysis_server/lib/src/channel/channel.dart
+++ b/pkg/analysis_server/lib/src/channel/channel.dart
@@ -8,7 +8,6 @@ import 'dart:async';
import 'dart:convert';
import 'package:analysis_server/src/protocol.dart';
-import 'package:analyzer/src/util/utilities_timing.dart';
/**
* Instances of the class [ChannelChunkSink] uses a [Converter] to translate
@@ -127,18 +126,6 @@ class ResponseConverter extends Converter<Map, Response> {
*/
abstract class ServerCommunicationChannel {
/**
- * A stopwatch used to accumulate the amount of time spent converting
- * incomming requests from Json to objects.
- */
- static final CountedStopwatch FromJson = new CountedStopwatch();
-
- /**
- * A stopwatch used to accumulate the amount of time spent converting outgoing
- * responses and notifications from objects to Json.
- */
- static final CountedStopwatch ToJson = new CountedStopwatch();
-
- /**
* Close the communication channel.
*/
void close();

Powered by Google App Engine
This is Rietveld 408576698