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

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

Issue 979823003: Major rework of vm service events. (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/script_inset.html
diff --git a/runtime/observatory/lib/src/elements/script_inset.html b/runtime/observatory/lib/src/elements/script_inset.html
index a8fb00167560145cdc4b515e7f0e21cfe456c080..ac7262c4022410c994b7d5272ee8de878d0b14f5 100644
--- a/runtime/observatory/lib/src/elements/script_inset.html
+++ b/runtime/observatory/lib/src/elements/script_inset.html
@@ -90,23 +90,23 @@
<div class="busyBreakpoint">B</div>
</template>
- <template if="{{ line.bpt == null && !line.possibleBpt }}">
+ <template if="{{ line.breakpoints == null && !line.possibleBpt }}">
<div class="emptyBreakpoint">&nbsp;</div>
</template>
- <template if="{{ line.bpt == null && line.possibleBpt && !busy}}">
+ <template if="{{ line.breakpoints == null && line.possibleBpt && !busy}}">
<div class="possibleBreakpoint">
<a on-click="{{ toggleBreakpoint }}">B</a>
</div>
</template>
- <template if="{{ line.bpt != null && !line.bpt.resolved && !busy}}">
+ <template if="{{ line.breakpoints != null && !line.breakpointResolved && !busy}}">
<div class="unresolvedBreakpoint">
<a on-click="{{ toggleBreakpoint }}">B</a>
</div>
</template>
- <template if="{{ line.bpt != null && line.bpt.resolved && !busy}}">
+ <template if="{{ line.breakpoints != null && line.breakpointResolved && !busy}}">
<div class="resolvedBreakpoint">
<a on-click="{{ toggleBreakpoint }}">B</a>
</div>
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | runtime/observatory/lib/src/elements/script_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698