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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java

Issue 12340077: Initial binding of RenameRefactoring service to Eclipse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java
index b111d9c8eb3c19cf899f1d6ee8e23bdce1792862..c36b9f2b8ff9e9e35a74c4d51942c461222d182f 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction.java
@@ -5,7 +5,7 @@ import com.google.dart.engine.utilities.instrumentation.InstrumentationBuilder;
import com.google.dart.tools.core.model.CompilationUnit;
import com.google.dart.tools.core.model.DartModelException;
import com.google.dart.tools.internal.corext.refactoring.RefactoringAvailabilityTester;
-import com.google.dart.tools.internal.corext.refactoring.RefactoringExecutionStarter;
+import com.google.dart.tools.internal.corext.refactoring.RefactoringExecutionStarter_OLD;
import com.google.dart.tools.ui.internal.actions.ActionUtil;
import com.google.dart.tools.ui.internal.actions.SelectionConverter;
import com.google.dart.tools.ui.internal.refactoring.RefactoringMessages;
@@ -53,7 +53,7 @@ public class InlineLocalAction extends InstrumentedSelectionDispatchAction {
instrumentation.metric("Problem", "Editor not editable");
return;
}
- RefactoringExecutionStarter.startInlineTempRefactoring(input, null, selection, getShell());
+ RefactoringExecutionStarter_OLD.startInlineTempRefactoring(input, null, selection, getShell());
}
@Override
@@ -76,6 +76,6 @@ public class InlineLocalAction extends InstrumentedSelectionDispatchAction {
}
boolean tryInlineTemp(CompilationUnit unit, DartUnit node, ITextSelection selection, Shell shell) {
- return RefactoringExecutionStarter.startInlineTempRefactoring(unit, node, selection, shell);
+ return RefactoringExecutionStarter_OLD.startInlineTempRefactoring(unit, node, selection, shell);
}
}

Powered by Google App Engine
This is Rietveld 408576698