| Index: editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/chromejs/DartSourcePathComputerDelegate.java
|
| ===================================================================
|
| --- editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/chromejs/DartSourcePathComputerDelegate.java (revision 11058)
|
| +++ editor/tools/plugins/com.google.dart.tools.debug.core/src/com/google/dart/tools/debug/core/chromejs/DartSourcePathComputerDelegate.java (working copy)
|
| @@ -13,9 +13,9 @@
|
| */
|
| package com.google.dart.tools.debug.core.chromejs;
|
|
|
| -import com.google.dart.compiler.SystemLibraryManager;
|
| +import com.google.dart.compiler.PackageLibraryManager;
|
| import com.google.dart.tools.core.DartCore;
|
| -import com.google.dart.tools.core.internal.model.SystemLibraryManagerProvider;
|
| +import com.google.dart.tools.core.internal.model.PackageLibraryManagerProvider;
|
| import com.google.dart.tools.core.model.DartProject;
|
| import com.google.dart.tools.debug.core.DartLaunchConfigWrapper;
|
|
|
| @@ -51,7 +51,7 @@
|
|
|
| List<ISourceContainer> containers = new ArrayList<ISourceContainer>();
|
|
|
| - SystemLibraryManager libraryManager = SystemLibraryManagerProvider.getSystemLibraryManager();
|
| + PackageLibraryManager libraryManager = PackageLibraryManagerProvider.getSystemLibraryManager();
|
|
|
| URI domUri = libraryManager.resolveDartUri(URI.create("dart://dom/dart_dom.lib"));
|
| IPath path = new Path(domUri.getPath()).removeLastSegments(1);
|
|
|