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

Unified Diff: editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/navigator/DartNavigatorContentProvider.java

Issue 10827457: rename refactor SystemLibraryManager -> PackagelibraryManager SdkLibraryManager -> SystemLibraryM... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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.eclipse.ui/src/com/google/dart/eclipse/ui/internal/navigator/DartNavigatorContentProvider.java
===================================================================
--- editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/navigator/DartNavigatorContentProvider.java (revision 11058)
+++ editor/tools/plugins/com.google.dart.eclipse.ui/src/com/google/dart/eclipse/ui/internal/navigator/DartNavigatorContentProvider.java (working copy)
@@ -13,12 +13,12 @@
*/
package com.google.dart.eclipse.ui.internal.navigator;
-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.DartLibraryImpl;
import com.google.dart.tools.core.internal.model.DartModelManager;
import com.google.dart.tools.core.internal.model.DartProjectNature;
-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.DartIgnoreListener;
import com.google.dart.tools.core.model.DartLibrary;
import com.google.dart.tools.core.model.DartProject;
@@ -214,8 +214,8 @@
private IFileStore getLibraryFileStore(DartLibraryImpl library) throws CoreException {
URI uri = library.getLibrarySourceFile().getUri();
- if (SystemLibraryManager.isDartUri(uri)) {
- SystemLibraryManager libraryManager = SystemLibraryManagerProvider.getSystemLibraryManager();
+ if (PackageLibraryManager.isDartUri(uri)) {
+ PackageLibraryManager libraryManager = PackageLibraryManagerProvider.getSystemLibraryManager();
uri = libraryManager.translateDartUri(uri);
}

Powered by Google App Engine
This is Rietveld 408576698