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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameResourceAction.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/internal/refactoring/actions/RenameResourceAction.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameResourceAction.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameResourceAction.java
index 7a4a6ac5b0562e310b09a8bc384498864bd1e523..bb6a7a5eed7b0ee22bf4a280f46efd41759bddeb 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameResourceAction.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameResourceAction.java
@@ -15,7 +15,7 @@ package com.google.dart.tools.ui.internal.refactoring.actions;
import com.google.dart.engine.utilities.instrumentation.InstrumentationBuilder;
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.actions.InstrumentedSelectionDispatchAction;
import org.eclipse.core.resources.IResource;
@@ -51,7 +51,7 @@ public class RenameResourceAction extends InstrumentedSelectionDispatchAction {
instrumentation.metric("Problem", "Rename not available");
return;
}
- RefactoringExecutionStarter.startRenameResourceRefactoring(resource, getShell());
+ RefactoringExecutionStarter_OLD.startRenameResourceRefactoring(resource, getShell());
}
@Override

Powered by Google App Engine
This is Rietveld 408576698