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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java

Issue 640333002: Improve import prefix search results UI. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
index 4bad685bec092c6a4804a7f0b873e61bfe8a6646..f21ce2ffab74ff3dca1facb3f944c2c4994e538a 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/ElementLabelProvider_NEW.java
@@ -87,6 +87,8 @@ public class ElementLabelProvider_NEW extends LabelProvider implements
: DartPluginImages.DESC_DART_FIELD_PUBLIC;
} else if (elementKind.equals(ElementKind.COMPILATION_UNIT)) {
return DartPluginImages.DESC_DART_COMP_UNIT;
+ } else if (elementKind.equals(ElementKind.PREFIX)) {
+ return DartPluginImages.DESC_DART_IMPORT_PREFIX;
} else if (elementKind.equals(ElementKind.LIBRARY)) {
return DartPluginImages.DESC_DART_LIB_FILE;
} else if (elementKind.equals(ElementKind.LABEL)) {

Powered by Google App Engine
This is Rietveld 408576698