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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.debug.ui/plugin.xml

Issue 10190008: delete launch configs when project is deleted (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?> 2 <?eclipse version="3.4"?>
3 <plugin> 3 <plugin>
4 <extension 4 <extension
5 point="org.eclipse.core.expressions.propertyTesters"> 5 point="org.eclipse.core.expressions.propertyTesters">
6 <propertyTester 6 <propertyTester
7 class="com.google.dart.tools.debug.ui.launch.RunPropertyTester" 7 class="com.google.dart.tools.debug.ui.launch.RunPropertyTester"
8 id="com.google.dart.tools.debug.ui.run.propertyTester" 8 id="com.google.dart.tools.debug.ui.run.propertyTester"
9 namespace="com.google.dart.tools.debug.ui.launch" 9 namespace="com.google.dart.tools.debug.ui.launch"
10 properties="canLaunch" 10 properties="canLaunch"
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 423 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
424 sequence="CTRL+D" 424 sequence="CTRL+D"
425 platform="win32"/> 425 platform="win32"/>
426 <key 426 <key
427 commandId="org.eclipse.debug.ui.commands.eof" 427 commandId="org.eclipse.debug.ui.commands.eof"
428 contextId="org.eclipse.debug.ui.console" 428 contextId="org.eclipse.debug.ui.console"
429 schemeId="com.google.dart.tools.dartAcceleratorConfiguration" 429 schemeId="com.google.dart.tools.dartAcceleratorConfiguration"
430 sequence="CTRL+Z" 430 sequence="CTRL+Z"
431 platform="win32"/ --> 431 platform="win32"/ -->
432 </extension> 432 </extension>
433 <extension
434 point="org.eclipse.ltk.core.refactoring.deleteParticipants">
435 <deleteParticipant
messick 2012/04/23 18:36:42 What happens when the file that defines the entry
keertip 2012/04/23 18:48:37 The html file would still be opened in a browser,
436 class="com.google.dart.tools.debug.ui.launch.DeleteLaunchConfigsPart icipant"
437 id="com.google.dart.tools.debug.ui.deleteParticipant.launch"
438 name="Delete Launch Configurations">
439 <enablement></enablement>
440 </deleteParticipant>
441 </extension>
433 <!--extension 442 <!--extension
434 point="org.eclipse.ui.actionSets"> 443 point="org.eclipse.ui.actionSets">
435 <actionSet 444 <actionSet
436 id="com.google.dart.tools.debug.ui.runActionSet" 445 id="com.google.dart.tools.debug.ui.runActionSet"
437 label="Run actions" 446 label="Run actions"
438 visible="true"> 447 visible="true">
439 <action 448 <action
440 class="com.google.dart.tools.debug.ui.launch.DartRunAction" 449 class="com.google.dart.tools.debug.ui.launch.DartRunAction"
441 definitionId="com.google.dart.tools.debug.ui.run.selection" 450 definitionId="com.google.dart.tools.debug.ui.run.selection"
442 id="com.google.dart.tools.debug.ui.run.selection.action" 451 id="com.google.dart.tools.debug.ui.run.selection.action"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 icon="icons/full/etool16/run_exc.gif" 530 icon="icons/full/etool16/run_exc.gif"
522 helpContextId="run_action_context" 531 helpContextId="run_action_context"
523 label="Run" 532 label="Run"
524 style="pulldown"> 533 style="pulldown">
525 </action> 534 </action>
526 </actionSet> 535 </actionSet>
527 </extension--> 536 </extension-->
528 537
529 538
530 </plugin> 539 </plugin>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698