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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java

Issue 460423003: Get the RemoteAnalysisServer to compile against the new generated AnalysisServer interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java
index 9e17c0fe4aa4a228a2e31ee9037e55a5a06777c2..f6b5953b0a32859740b1378808657fc100d112e5 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/TypeHierarchyProcessor.java
@@ -15,7 +15,7 @@ package com.google.dart.server.internal.remote.processor;
import com.google.common.collect.Lists;
import com.google.dart.server.Element;
-import com.google.dart.server.TypeHierarchyConsumer;
+import com.google.dart.server.GetTypeHierarchyConsumer;
import com.google.dart.server.TypeHierarchyItem;
import com.google.dart.server.internal.TypeHierarchyItemImpl;
import com.google.gson.JsonArray;
@@ -27,15 +27,15 @@ import java.util.List;
/**
* Instances of {@code TypeHierarchyResultProcessor} translate JSON result objects for a given
- * {@link TypeHierarchyConsumer}.
+ * {@link GetTypeHierarchyConsumer}.
*
* @coverage dart.server.remote
*/
public class TypeHierarchyProcessor extends ResultProcessor {
- private final TypeHierarchyConsumer consumer;
+ private final GetTypeHierarchyConsumer consumer;
- public TypeHierarchyProcessor(TypeHierarchyConsumer consumer) {
+ public TypeHierarchyProcessor(GetTypeHierarchyConsumer consumer) {
this.consumer = consumer;
}

Powered by Google App Engine
This is Rietveld 408576698