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

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

Issue 69883003: Issue 249. Show documentation for highlighted code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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/text/DartSourceViewerConfiguration.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/DartSourceViewerConfiguration.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/DartSourceViewerConfiguration.java
index 9ea2eac92283a3338b73bd20d4ee4fd5209307d2..02e27e70ad79cb4ecb59097f02ddcec807093ad8 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/DartSourceViewerConfiguration.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/DartSourceViewerConfiguration.java
@@ -275,7 +275,8 @@ public class DartSourceViewerConfiguration extends TextSourceViewerConfiguration
@Override
public int[] getConfiguredTextHoverStateMasks(ISourceViewer sourceViewer, String contentType) {
- return super.getConfiguredTextHoverStateMasks(sourceViewer, contentType);
+ return new int[] {0};
+// return super.getConfiguredTextHoverStateMasks(sourceViewer, contentType);
// JavaEditorTextHoverDescriptor[] hoverDescs =
// DartToolsPlugin.getDefault().getJavaEditorTextHoverDescriptors();
// int stateMasks[] = new int[hoverDescs.length];

Powered by Google App Engine
This is Rietveld 408576698