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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java

Issue 542323003: Search domain implementation in the Remote java server, using generated types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove some now unused classes Created 6 years, 3 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/AnalysisServerListener.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java
index 568904637882e801df634d2f93a5bb3a5d8b75a8..f55127f8c30dd1b00f9662af74cc11aa00912b72 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java
@@ -21,6 +21,7 @@ import com.google.dart.server.generated.types.NavigationRegion;
import com.google.dart.server.generated.types.Occurrences;
import com.google.dart.server.generated.types.Outline;
import com.google.dart.server.generated.types.OverrideMember;
+import com.google.dart.server.generated.types.SearchResult;
import java.util.List;
@@ -114,7 +115,7 @@ public interface AnalysisServerListener {
* @param last {@code true} if this is the last set of results that will be returned for the
* indicated search
*/
- public void computedSearchResults(String searchId, SearchResult[] results, boolean last);
+ public void computedSearchResults(String searchId, List<SearchResult> results, boolean last);
/**
* Reports that any analysis results that were previously associated with the given files should

Powered by Google App Engine
This is Rietveld 408576698