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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java

Issue 766323002: Compressed/optimized navigation notification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java
index aabe9ed88ce6c0d43622a75f4ceb92feb1507583..c20f513ea038ecfff0f0594cb224dff74baf742b 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java
@@ -15,6 +15,7 @@ package com.google.dart.tools.ui.internal.refactoring.actions;
import com.google.dart.server.generated.types.Element;
import com.google.dart.server.generated.types.NavigationRegion;
+import com.google.dart.server.generated.types.NavigationTarget;
import com.google.dart.tools.core.DartCore;
import com.google.dart.tools.core.analysis.model.AnalysisServerNavigationListener;
import com.google.dart.tools.ui.actions.AbstractRefactoringAction_NEW;
@@ -83,7 +84,7 @@ public class RenameDartElementAction_NEW extends AbstractRefactoringAction_NEW i
}
private void updateSelectedElement() {
- Element[] targets = NewSelectionConverter.getNavigationTargets(file, selectionOffset);
+ NavigationTarget[] targets = NewSelectionConverter.getNavigationTargets(file, selectionOffset);
setEnabled(targets.length != 0);
}
}

Powered by Google App Engine
This is Rietveld 408576698