Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-10-12 06:42:15 +0000
committerSergey Prigogin2016-10-28 18:49:57 +0000
commit04036a6de1b6f8e8e274ddfd7919a9bcea6bf8d7 (patch)
treeb47bc03163665a6e63e000aa3bbcb3b003561eb1
parentbfd20d84471be83adf085a099bb8dfea9923b004 (diff)
downloadeclipse.platform.ui-04036a6de1b6f8e8e274ddfd7919a9bcea6bf8d7.tar.gz
eclipse.platform.ui-04036a6de1b6f8e8e274ddfd7919a9bcea6bf8d7.tar.xz
eclipse.platform.ui-04036a6de1b6f8e8e274ddfd7919a9bcea6bf8d7.zip
Bug 505680 - Add search term "freeze" and "delay" to UI Responsiveness
Monitor Change-Id: Ib7900dddd8459f7e5fc322c492fe77872195c53d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> (cherry picked from commit de97096fee9ea98c3bb90297f51633530ab5c41a)
-rw-r--r--bundles/org.eclipse.ui.monitoring/plugin.properties6
-rw-r--r--bundles/org.eclipse.ui.monitoring/plugin.xml10
2 files changed, 14 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.monitoring/plugin.properties b/bundles/org.eclipse.ui.monitoring/plugin.properties
index b9ba5e882d8..fe36f73b3e3 100644
--- a/bundles/org.eclipse.ui.monitoring/plugin.properties
+++ b/bundles/org.eclipse.ui.monitoring/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2014 Google, Inc and others.
+# Copyright (c) 2014, 2016 Google, Inc and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -8,9 +8,11 @@
# Contributors:
# Marcus Eng (Google) - initial API and implementation
# Sergey Prigogin (Google)
+# Lars Vogel (vogella)
###############################################################################
Bundle-Name=UI Responsiveness Monitoring
Bundle-Vendor=Eclipse.org
MonitoringPreferencePage.name=UI Responsiveness Monitoring
-UiFreezeEventLogger.name=UI Freeze Event Logger \ No newline at end of file
+UiFreezeEventLogger.name=UI Freeze Event Logger
+preferenceKeywords=Freeze Delay \ No newline at end of file
diff --git a/bundles/org.eclipse.ui.monitoring/plugin.xml b/bundles/org.eclipse.ui.monitoring/plugin.xml
index 498524e0e9b..90eacc054be 100644
--- a/bundles/org.eclipse.ui.monitoring/plugin.xml
+++ b/bundles/org.eclipse.ui.monitoring/plugin.xml
@@ -33,6 +33,16 @@
class="org.eclipse.ui.internal.monitoring.preferences.MonitoringPreferencePage"
id="org.eclipse.ui.monitoring.page"
name="%MonitoringPreferencePage.name">
+ <keywordReference
+ id="org.eclipse.ui.monitoring.preferenceKeywords">
+ </keywordReference>
</page>
</extension>
+ <extension
+ point="org.eclipse.ui.keywords">
+ <keyword
+ id="org.eclipse.ui.monitoring.preferenceKeywords"
+ label="%preferenceKeywords">
+ </keyword>
+ </extension>
</plugin>

Back to the top