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

Side by Side Diff: runtime/observatory/lib/src/elements/script_inset.html

Issue 926103002: Add Breakpoint class 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 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 .sourceBox { 9 .sourceBox {
10 background-color: #f5f5f5; 10 background-color: #f5f5f5;
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 <template if="{{ line.bpt == null && !line.possibleBpt }}"> 153 <template if="{{ line.bpt == null && !line.possibleBpt }}">
154 <div class="emptyBreakpoint">&nbsp;</div> 154 <div class="emptyBreakpoint">&nbsp;</div>
155 </template> 155 </template>
156 156
157 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}"> 157 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}">
158 <div class="possibleBreakpoint"> 158 <div class="possibleBreakpoint">
159 <a on-click="{{ toggleBreakpoint }}">B</a> 159 <a on-click="{{ toggleBreakpoint }}">B</a>
160 </div> 160 </div>
161 </template> 161 </template>
162 162
163 <template if="{{ line.bpt != null && !line.bpt['resolved'] && !busy}}"> 163 <template if="{{ line.bpt != null && !line.bpt.resolved && !busy}}">
164 <div class="unresolvedBreakpoint"> 164 <div class="unresolvedBreakpoint">
165 <a on-click="{{ toggleBreakpoint }}">B</a> 165 <a on-click="{{ toggleBreakpoint }}">B</a>
166 </div> 166 </div>
167 </template> 167 </template>
168 168
169 <template if="{{ line.bpt != null && line.bpt['resolved'] && !busy}}"> 169 <template if="{{ line.bpt != null && line.bpt.resolved && !busy}}">
170 <div class="resolvedBreakpoint"> 170 <div class="resolvedBreakpoint">
171 <a on-click="{{ toggleBreakpoint }}">B</a> 171 <a on-click="{{ toggleBreakpoint }}">B</a>
172 </div> 172 </div>
173 </template> 173 </template>
174 </template> <!-- line != null --> 174 </template> <!-- line != null -->
175 175
176 </template> 176 </template>
177 </polymer-element> 177 </polymer-element>
178 178
179 <script type="application/dart" src="script_inset.dart"></script> 179 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698