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

Unified Diff: runtime/observatory/lib/src/elements/nav_bar.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/nav_bar.html
diff --git a/runtime/observatory/lib/src/elements/nav_bar.html b/runtime/observatory/lib/src/elements/nav_bar.html
index bb6c0451c7853be1ef3025fa648741f1760a6deb..97c300aa263417c6664b7058f0026c23aec11a84 100644
--- a/runtime/observatory/lib/src/elements/nav_bar.html
+++ b/runtime/observatory/lib/src/elements/nav_bar.html
@@ -33,7 +33,9 @@
</style>
<nav>
<ul>
- <nav-notify events="{{ app.notifications }}"></nav-notify>
+ <template if="{{ showNotify }}">
+ <nav-notify events="{{ app.notifications }}"></nav-notify>
+ </template>
<content></content>
</ul>
</nav>
@@ -274,7 +276,7 @@
margin-top: 10px;
margin-right: 10px;
padding-right: 25px;
- width: 200px;
+ width: 225px;
color: #ddd;
background: rgba(0,0,0,.6);
border: solid 2px white;
@@ -323,21 +325,16 @@
_href="{{ gotoLink('/inspect', event.isolate) }}">{{ event.isolate.name }}</a>
is paused
<template if="{{ event.breakpoint != null }}">
- at breakpoint
+ at breakpoint {{ event.breakpoint['breakpointNumber'] }}
</template>
<template if="{{ event.eventType == 'ExceptionThrown' }}">
at exception
</template>
<br><br>
- <action-link callback="{{ resume }}" label="resume" color="white">
- </action-link>
- <action-link callback="{{ stepInto }}" label="step" color="white">
- </action-link>
- <action-link callback="{{ stepOver }}" label="step&nbsp;over"
- color="white"></action-link>
- <action-link callback="{{ stepOut }}" label="step&nbsp;out"
- color="white"></action-link>
+ [<a class="link" on-click="{{ goto }}"
+ _href="{{ gotoLink('/debugger', event.isolate) }}">debug</a>]
+
<a class="boxclose" on-click="{{ closeItem }}">&times;</a>
</div>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/nav_bar.dart ('k') | runtime/observatory/lib/src/elements/script_inset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698