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

Unified Diff: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java

Issue 7089017: Change source look-up design (Closed) Base URL: https://chromedevtools.googlecode.com/svn/trunk
Patch Set: fcr Created 9 years, 6 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: plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java
diff --git a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java
index e3e538c66fcbcd1c65d194df597c23c259f9d2f2..aee48697e3c390f73365a1f3c65b765dad3e746a 100644
--- a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java
+++ b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/ConnectedTargetData.java
@@ -4,6 +4,8 @@
package org.chromium.debug.core.model;
+import java.util.Collection;
+
import org.chromium.debug.core.ChromiumDebugPlugin;
import org.chromium.debug.core.model.DebugTargetImpl.ListenerBlock;
import org.chromium.debug.core.model.DebugTargetImpl.State;
@@ -110,7 +112,7 @@ public class ConnectedTargetData {
DebugTargetImpl.fireDebugEvent(new DebugEvent(debugTargetImpl, DebugEvent.RESUME, detail));
}
- public VmResource getVmResource(IFile resource) throws CoreException {
+ public Collection<? extends VmResource> getVmResource(IFile resource) throws CoreException {
return workspaceRelations.findVmResourceFromWorkspaceFile(resource);
}

Powered by Google App Engine
This is Rietveld 408576698