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

Unified Diff: editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/util/IRemoteConnectionDelegate.java

Issue 753183003: Fix an issue resolving paths when remote debugging. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 1 month 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.debug.core/src/com/google/dart/tools/debug/core/util/IRemoteConnectionDelegate.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/util/IRemoteConnectionDelegate.java (revision 41867)
+++ editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/util/IRemoteConnectionDelegate.java (working copy)
@@ -14,7 +14,7 @@
package com.google.dart.tools.debug.core.util;
-import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IContainer;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.debug.core.model.IDebugTarget;
@@ -24,18 +24,17 @@
* A ILaunchConfigurationDelegate that can connect to remote debug agents.
*/
public interface IRemoteConnectionDelegate extends ILaunchConfigurationDelegate {
-
/**
* Open a debug connection to a remote host.
*
* @param host
* @param port
- * @param file
+ * @param container
* @param monitor
* @param usePubServe
* @throws CoreException
*/
- public IDebugTarget performRemoteConnection(String host, int port, IFile file,
+ public IDebugTarget performRemoteConnection(String host, int port, IContainer container,
IProgressMonitor monitor, boolean usePubServe) throws CoreException;
}

Powered by Google App Engine
This is Rietveld 408576698