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

Unified Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 866663003: Add a working command line debugger to Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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: runtime/observatory/lib/src/elements/isolate_summary.html
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.html b/runtime/observatory/lib/src/elements/isolate_summary.html
index 5331b1eaa2af02d7775a61f90357267ca03b7c81..cd29e17eaec8562531ab88c180e3f35588adf460 100644
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ b/runtime/observatory/lib/src/elements/isolate_summary.html
@@ -15,11 +15,12 @@
<div class="flex-item-10-percent">
<isolate-ref ref="{{ isolate }}"></isolate-ref>
</div>
- <div class="flex-item-30-percent">
+ <div class="flex-item-10-percent">
<isolate-run-state isolate="{{ isolate }}"></isolate-run-state>
</div>
- <div class="flex-item-40-percent">
+ <div class="flex-item-60-percent">
<isolate-location isolate="{{ isolate }}"></isolate-location>
+ [<a on-click="{{ goto }}" _href="{{ gotoLink('/debugger', isolate) }}">debug</a>]
</div>
<div class="flex-item-10-percent">
</div>
@@ -42,21 +43,14 @@
<template>
<template if="{{ isolate.pauseEvent != null }}">
<strong>paused</strong>
- <action-link callback="{{ resume }}" label="resume"></action-link>
-
- <action-link callback="{{ stepInto }}" label="step"></action-link>
- <action-link callback="{{ stepOver }}" label="step&nbsp;over"></action-link>
- <action-link callback="{{ stepOut }}" label="step&nbsp;out"></action-link>
</template>
<template if="{{ isolate.running }}">
<strong>running</strong>
- <action-link callback="{{ pause }}" label="pause"></action-link>
</template>
<template if="{{ isolate.idle }}">
<strong>idle</strong>
- <action-link callback="{{ pause }}" label="pause"></action-link>
</template>
<template if="{{ isolate.loading }}">

Powered by Google App Engine
This is Rietveld 408576698