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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.html

Issue 113513004: Handle vmservice messages while at breakpoint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.html
===================================================================
--- runtime/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.html (revision 0)
+++ runtime/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.html (working copy)
@@ -0,0 +1,22 @@
+<head>
+ <link rel="import" href="observatory_element.html">
+</head>
+<polymer-element name="breakpoint-list" extends="observatory-element">
+ <template>
+ <template if="{{ msg['breakpoints'].isEmpty }}">
+ <div class="panel panel-warning">
+ <div class="panel-body">No breakpoints</div>
+ </div>
+ </template>
+ <template if="{{ msg['breakpoints'].isNotEmpty }}">
+ <ul class="list-group">
+ <template repeat="{{ bpt in msg['breakpoints'] }}">
+ <li class="list-group-item">
+ {{ bpt }}
+ </li>
+ </template>
+ </ul>
+ </template>
+ </template>
+ <script type="application/dart" src="breakpoint_list.dart"></script>
+</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698