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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/server/ServerDebugTarget.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 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012, the Dart project authors. 2 * Copyright (c) 2012, the Dart project authors.
3 * 3 *
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except
5 * in compliance with the License. You may obtain a copy of the License at 5 * in compliance with the License. You may obtain a copy of the License at
6 * 6 *
7 * http://www.eclipse.org/legal/epl-v10.html 7 * http://www.eclipse.org/legal/epl-v10.html
8 * 8 *
9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License 9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 private VmConnection connection; 69 private VmConnection connection;
70 70
71 private List<ServerDebugThread> threads = new ArrayList<ServerDebugThread>(); 71 private List<ServerDebugThread> threads = new ArrayList<ServerDebugThread>();
72 72
73 private boolean firstBreak = true; 73 private boolean firstBreak = true;
74 74
75 private ServerBreakpointManager breakpointManager; 75 private ServerBreakpointManager breakpointManager;
76 76
77 private VmIsolate currentIsolate; 77 private VmIsolate currentIsolate;
78 78
79 @SuppressWarnings("unused")
79 private IProject currentProject; 80 private IProject currentProject;
80 81
81 private UriToFileResolver uriToFileResolver; 82 private UriToFileResolver uriToFileResolver;
82 83
83 private IEclipsePreferences preferences; 84 private IEclipsePreferences preferences;
84 private IPreferenceChangeListener preferenceListener; 85 private IPreferenceChangeListener preferenceListener;
85 86
86 public ServerDebugTarget(ILaunch launch, IProcess process, int connectionPort) { 87 public ServerDebugTarget(ILaunch launch, IProcess process, int connectionPort) {
87 this(launch, process, null, connectionPort); 88 this(launch, process, null, connectionPort);
88 } 89 }
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 597
597 } 598 }
598 599
599 private void sleep(int millis) { 600 private void sleep(int millis) {
600 try { 601 try {
601 Thread.sleep(millis); 602 Thread.sleep(millis);
602 } catch (Exception exception) { 603 } catch (Exception exception) {
603 } 604 }
604 } 605 }
605 } 606 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698