Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
| 6 <link rel="import" href="nav_bar.html"> | 6 <link rel="import" href="nav_bar.html"> |
| 7 <link rel="import" href="observatory_element.html"> | 7 <link rel="import" href="observatory_element.html"> |
| 8 <link rel="import" href="script_ref.html"> | 8 <link rel="import" href="script_ref.html"> |
| 9 </head> | 9 </head> |
| 10 <polymer-element name="isolate-view" extends="observatory-element"> | 10 <polymer-element name="isolate-view" extends="observatory-element"> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 </template> | 72 </template> |
| 73 | 73 |
| 74 <template if="{{ isolate.idle }}"> | 74 <template if="{{ isolate.idle }}"> |
| 75 <strong>idle</strong> | 75 <strong>idle</strong> |
| 76 </template> | 76 </template> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| 79 </div> | 79 </div> |
| 80 </div> | 80 </div> |
| 81 | 81 |
| 82 <template if="{{ isolate.stickyError != null }}"> | |
| 83 <div class="content"> | |
| 84 <h1>Sticky Error</h1> | |
|
turnidge
2014/03/24 20:22:13
Let's drop the word sticky here - not so meaningfu
Cutch
2014/03/25 14:39:06
Done.
| |
| 85 <div class="memberList"> | |
| 86 <div class="memberItem"> | |
| 87 <div class="memberName">message</div> | |
| 88 <div class="memberValue"> | |
| 89 <pre>{{ isolate.stickyError.message }}</pre> | |
| 90 </div> | |
| 91 </div> | |
| 92 <div class="memberItem"> | |
| 93 <template if="{{ isolate.stickyError.exception != null }}"> | |
| 94 <div class="memberName">exception</div> | |
| 95 <div class="memberValue"> | |
| 96 <instance-ref ref="{{ isolate.stickyError.exception }}"></instan ce-ref> | |
| 97 </div> | |
| 98 </template> | |
| 99 </div> | |
| 100 <div class="memberItem"> | |
| 101 <template if="{{ isolate.stickyError.stacktrace != null }}"> | |
| 102 <div class="memberName">stacktrace</div> | |
| 103 <div class="memberValue"> | |
| 104 <instance-ref ref="{{ isolate.stickyError.stacktrace }}"></instanc e-ref> | |
| 105 </div> | |
| 106 </template> | |
| 107 </div> | |
| 108 </div> | |
| 109 </div> | |
| 110 <hr> | |
| 111 </template> | |
| 112 | |
| 82 <template if="{{ isolate.topFrame != null }}"> | 113 <template if="{{ isolate.topFrame != null }}"> |
| 83 <br> | 114 <br> |
| 84 <div class="sourceInset"> | 115 <div class="sourceInset"> |
| 85 <pre> | 116 <pre> |
| 86 {{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineString' ] }}</pre> | 117 {{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineString' ] }}</pre> |
| 87 </div> | 118 </div> |
| 88 </template> | 119 </template> |
| 89 | 120 |
| 90 <br> | 121 <br> |
| 91 | 122 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 163 <div class="memberValue"> | 194 <div class="memberValue"> |
| 164 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> | 195 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> |
| 165 </div> | 196 </div> |
| 166 </div> | 197 </div> |
| 167 </div> | 198 </div> |
| 168 </div> | 199 </div> |
| 169 | 200 |
| 170 <hr> | 201 <hr> |
| 171 | 202 |
| 172 <div class="content"> | 203 <div class="content"> |
| 204 <div id="tagProfileChart" class="col-md-8" style="height: 400px"></div> | |
| 205 </div> | |
| 206 | |
| 207 <hr> | |
| 208 | |
| 209 <div class="content"> | |
| 173 <eval-box callback="{{ eval }}"></eval-box> | 210 <eval-box callback="{{ eval }}"></eval-box> |
| 174 </div> | 211 </div> |
| 175 <br><br><br><br> | 212 <br><br><br><br> |
| 176 <br><br><br><br> | 213 <br><br><br><br> |
| 177 </template> | 214 </template> |
| 178 <script type="application/dart" src="isolate_view.dart"></script> | 215 <script type="application/dart" src="isolate_view.dart"></script> |
| 179 </polymer-element> | 216 </polymer-element> |
| OLD | NEW |