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

Side by Side 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, 9 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 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 3
4 <polymer-element name="script-inset" extends="observatory-element"> 4 <polymer-element name="script-inset" extends="observatory-element">
5 <template> 5 <template>
6 <style> 6 <style>
7 .sourceInset { 7 .sourceInset {
8 } 8 }
9 .sourceTable { 9 .sourceTable {
10 display: table; 10 display: table;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 <template if="{{ line == null }}"> 84 <template if="{{ line == null }}">
85 <div class="emptyBreakpoint">&nbsp;</div> 85 <div class="emptyBreakpoint">&nbsp;</div>
86 </template> 86 </template>
87 87
88 <template if="{{ line != null }}"> 88 <template if="{{ line != null }}">
89 <template if="{{ line.possibleBpt && busy}}"> 89 <template if="{{ line.possibleBpt && busy}}">
90 <div class="busyBreakpoint">B</div> 90 <div class="busyBreakpoint">B</div>
91 </template> 91 </template>
92 92
93 <template if="{{ line.bpt == null && !line.possibleBpt }}"> 93 <template if="{{ line.breakpoints == null && !line.possibleBpt }}">
94 <div class="emptyBreakpoint">&nbsp;</div> 94 <div class="emptyBreakpoint">&nbsp;</div>
95 </template> 95 </template>
96 96
97 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}"> 97 <template if="{{ line.breakpoints == null && line.possibleBpt && !busy}}">
98 <div class="possibleBreakpoint"> 98 <div class="possibleBreakpoint">
99 <a on-click="{{ toggleBreakpoint }}">B</a> 99 <a on-click="{{ toggleBreakpoint }}">B</a>
100 </div> 100 </div>
101 </template> 101 </template>
102 102
103 <template if="{{ line.bpt != null && !line.bpt.resolved && !busy}}"> 103 <template if="{{ line.breakpoints != null && !line.breakpointResolved && ! busy}}">
104 <div class="unresolvedBreakpoint"> 104 <div class="unresolvedBreakpoint">
105 <a on-click="{{ toggleBreakpoint }}">B</a> 105 <a on-click="{{ toggleBreakpoint }}">B</a>
106 </div> 106 </div>
107 </template> 107 </template>
108 108
109 <template if="{{ line.bpt != null && line.bpt.resolved && !busy}}"> 109 <template if="{{ line.breakpoints != null && line.breakpointResolved && !b usy}}">
110 <div class="resolvedBreakpoint"> 110 <div class="resolvedBreakpoint">
111 <a on-click="{{ toggleBreakpoint }}">B</a> 111 <a on-click="{{ toggleBreakpoint }}">B</a>
112 </div> 112 </div>
113 </template> 113 </template>
114 </template> <!-- line != null --> 114 </template> <!-- line != null -->
115 115
116 </template> 116 </template>
117 </polymer-element> 117 </polymer-element>
118 118
119 <script type="application/dart" src="script_inset.dart"></script> 119 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW
« 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