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

Unified Diff: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java

Issue 800913002: Report pub status (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 6 years 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: editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java
diff --git a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java
index 7fd8b8c0fb4d2bc9c840fb281f30dc8df8137fe5..02d3d76ac286ffafe953855cfcae3ca405baef8b 100644
--- a/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java
+++ b/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java
@@ -17,6 +17,7 @@ import com.google.dart.engine.sdk.DirectoryBasedDartSdk;
import com.google.dart.server.AnalysisServer;
import com.google.dart.server.AnalysisServerListenerAdapter;
import com.google.dart.server.generated.types.AnalysisStatus;
+import com.google.dart.server.generated.types.PubStatus;
import com.google.dart.server.internal.remote.RemoteAnalysisServerImpl;
import com.google.dart.server.internal.remote.StdioServerSocket;
@@ -39,7 +40,7 @@ public class AnalyzeEngineInServer extends TimingTest {
private boolean isAnalyzing = true;
@Override
- public void serverStatus(AnalysisStatus analysisStatus) {
+ public void serverStatus(AnalysisStatus analysisStatus, PubStatus pubStatus) {
if (analysisStatus != null) {
isAnalyzing = analysisStatus.isAnalyzing();
}

Powered by Google App Engine
This is Rietveld 408576698