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

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

Issue 10270017: changed Run behavior http://code.google.com/p/dart/issues/detail?id=2730, (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 <extension point="org.eclipse.ui.views"> 262 <extension point="org.eclipse.ui.views">
263 <view 263 <view
264 class="com.google.dart.tools.debug.ui.internal.view.DebuggerView" 264 class="com.google.dart.tools.debug.ui.internal.view.DebuggerView"
265 id="com.google.dart.tools.debug.debuggerView" 265 id="com.google.dart.tools.debug.debuggerView"
266 name="Debugger" 266 name="Debugger"
267 restorable="true" 267 restorable="true"
268 category="com.google.dart.tools.ui.dart" 268 category="com.google.dart.tools.ui.dart"
269 icon="icons/obj16/debug_exc.gif"> 269 icon="icons/obj16/debug_exc.gif">
270 </view> 270 </view>
271 </extension> 271 </extension>
272 <extension
273 point="org.eclipse.ui.popupMenus">
274 <viewerContribution
275 id="com.google.dart.tools.debug.ui.viewerContribution"
276 targetID="com.google.dart.tools.ui.LibraryExplorer">
277 <action
278 class="com.google.dart.tools.debug.ui.launch.DartRunAction"
279 enablesFor="1"
280 id="com.google.dart.tools.debug.ui.run.selection"
281 label="Run in Browser"
282 menubarPath="additions">
283 </action>
284 <visibility>
285 <objectState
286 name="elementType"
287 value="com.google.dart.tools.core.model.DartElement.HTML_FILE" >
288 </objectState>
289 </visibility>
290 </viewerContribution>
291 </extension>
292 272
293 <extension 273 <extension
294 point="org.eclipse.core.runtime.adapters"> 274 point="org.eclipse.core.runtime.adapters">
295 <factory 275 <factory
296 adaptableType="com.google.dart.tools.core.model.DartElement" 276 adaptableType="com.google.dart.tools.core.model.DartElement"
297 class="com.google.dart.tools.debug.ui.launch.ActionFilterAdapterFact ory"> 277 class="com.google.dart.tools.debug.ui.launch.ActionFilterAdapterFact ory">
298 <adapter 278 <adapter
299 type="org.eclipse.ui.IActionFilter"> 279 type="org.eclipse.ui.IActionFilter">
300 </adapter> 280 </adapter>
301 </factory> 281 </factory>
(...skipping 23 matching lines...) Expand all
325 name="%launchDialogCommandName"> 305 name="%launchDialogCommandName">
326 </command> 306 </command>
327 </extension> 307 </extension>
328 <extension 308 <extension
329 point="org.eclipse.ui.menus"> 309 point="org.eclipse.ui.menus">
330 <menuContribution 310 <menuContribution
331 allPopups="true" 311 allPopups="true"
332 locationURI="popup:com.google.dart.tools.ui.FileExplorer?after=addit ions"> 312 locationURI="popup:com.google.dart.tools.ui.FileExplorer?after=addit ions">
333 <command 313 <command
334 commandId="com.google.dart.tools.debug.ui.run.selection" 314 commandId="com.google.dart.tools.debug.ui.run.selection"
315 icon="icons/obj16/run_exc.gif"
335 style="push"> 316 style="push">
336 <visibleWhen 317 <visibleWhen
337 checkEnabled="false"> 318 checkEnabled="false">
338 <with 319 <with
339 variable="selection"> 320 variable="selection">
340 <count 321 <count
341 value="1"> 322 value="1">
342 </count> 323 </count>
343 <and> 324 <and>
344 <test 325 <test
345 forcePluginActivation="true" 326 forcePluginActivation="true"
346 property="com.google.dart.tools.debug.ui.launch.ca nLaunch"> 327 property="com.google.dart.tools.debug.ui.launch.ca nLaunch">
347 </test> 328 </test>
348 </and> 329 </and>
349 </with> 330 </with>
350 </visibleWhen> 331 </visibleWhen>
351 </command> 332 </command>
352 </menuContribution> 333 </menuContribution>
353 <menuContribution 334 <menuContribution
354 allPopups="false" 335 allPopups="false"
355 locationURI="menu:org.eclipse.ui.run?after=runGroup"> 336 locationURI="menu:org.eclipse.ui.run?after=runGroup">
356 <command 337 <command
357 commandId="com.google.dart.tools.debug.ui.run.last" 338 commandId="com.google.dart.tools.debug.ui.run.selection"
339 icon="icons/obj16/run_exc.gif"
358 label="%runCommandName" 340 label="%runCommandName"
359 style="push" 341 style="push"
360 tooltip="%runDescription"> 342 tooltip="%runDescription">
361 </command> 343 </command>
362 <command
363 commandId="com.google.dart.tools.debug.ui.run.selection"
364 label="%runSelectionCommandName"
365 style="push"
366 tooltip="%runSelectionDescription">
367 </command>
368 </menuContribution> 344 </menuContribution>
369 <menuContribution 345 <menuContribution
370 allPopups="false" 346 allPopups="false"
371 locationURI="menu:org.eclipse.ui.run?after=emptyLaunchGroup"> 347 locationURI="menu:org.eclipse.ui.run?after=emptyLaunchGroup">
372 <command 348 <command
373 commandId="com.google.dart.tools.debug.ui.launchDialog" 349 commandId="com.google.dart.tools.debug.ui.launchDialog"
374 style="push"> 350 style="push">
375 </command> 351 </command>
376 </menuContribution> 352 </menuContribution>
377 </extension> 353 </extension>
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 icon="icons/full/etool16/run_exc.gif" 497 icon="icons/full/etool16/run_exc.gif"
522 helpContextId="run_action_context" 498 helpContextId="run_action_context"
523 label="Run" 499 label="Run"
524 style="pulldown"> 500 style="pulldown">
525 </action> 501 </action>
526 </actionSet> 502 </actionSet>
527 </extension--> 503 </extension-->
528 504
529 505
530 </plugin> 506 </plugin>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698