| OLD | NEW |
| 1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js"
></script> | 1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js"
></script> |
| 2 <script src="packages/custom_element/custom-elements.debug.js"></script> | 2 <script src="packages/custom_element/custom-elements.debug.js"></script> |
| 3 <script src="packages/browser/interop.js"></script> | 3 <script src="packages/browser/interop.js"></script> |
| 4 | 4 |
| 5 <title>Dart VM Observatory</title> | 5 <title>Dart VM Observatory</title> |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> | 7 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> |
| 8 | 8 |
| 9 <script src="index.html_bootstrap.dart.js"></script> | 9 <script src="index.html_bootstrap.dart.js"></script> |
| 10 | 10 |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 </div> | 305 </div> |
| 306 </div> | 306 </div> |
| 307 </div> | 307 </div> |
| 308 </div> | 308 </div> |
| 309 </template> | 309 </template> |
| 310 | 310 |
| 311 </polymer-element><polymer-element name="isolate-summary" extends="observatory-e
lement"> | 311 </polymer-element><polymer-element name="isolate-summary" extends="observatory-e
lement"> |
| 312 <template> | 312 <template> |
| 313 <div class="row"> | 313 <div class="row"> |
| 314 <div class="col-md-1"> | 314 <div class="col-md-1"> |
| 315 <img src="img/isolate_icon.png" class="img-polaroid"> | 315 <img src="packages/observatory/src/observatory_elements/img/isolate_icon
.png" class="img-polaroid"> |
| 316 </div> | 316 </div> |
| 317 <div class="col-md-1">{{ isolate }}</div> | 317 <div class="col-md-1">{{ isolate }}</div> |
| 318 <div class="col-md-10">{{ name }}</div> | 318 <div class="col-md-10">{{ name }}</div> |
| 319 </div> | 319 </div> |
| 320 <div class="row"> | 320 <div class="row"> |
| 321 <div class="col-md-2"></div> | 321 <div class="col-md-2"></div> |
| 322 <div class="col-md-1"> | 322 <div class="col-md-1"> |
| 323 <a href="{{ app.locationManager.relativeLink(isolate, 'stacktrac
e') }}">Stacktrace</a> | 323 <a href="{{ app.locationManager.relativeLink(isolate, 'stacktrac
e') }}">Stacktrace</a> |
| 324 </div> | 324 </div> |
| 325 <div class="col-md-1"> | 325 <div class="col-md-1"> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 338 </polymer-element> | 338 </polymer-element> |
| 339 <polymer-element name="isolate-list" extends="observatory-element"> | 339 <polymer-element name="isolate-list" extends="observatory-element"> |
| 340 <template> | 340 <template> |
| 341 <ul class="list-group"> | 341 <ul class="list-group"> |
| 342 <template repeat="{{ isolate in app.isolateManager.isolates.values }}"> | 342 <template repeat="{{ isolate in app.isolateManager.isolates.values }}"> |
| 343 <li class="list-group-item"> | 343 <li class="list-group-item"> |
| 344 <isolate-summary app="{{ app }}" isolate="{{ isolate.id }}" name="{{ iso
late.name }}"></isolate-summary> | 344 <isolate-summary app="{{ app }}" isolate="{{ isolate.id }}" name="{{ iso
late.name }}"></isolate-summary> |
| 345 </li> | 345 </li> |
| 346 </template> | 346 </template> |
| 347 </ul> | 347 </ul> |
| 348 (<a href="{{ app.locationManager.absoluteLink('cpu') }}">cpu</a>) |
| 349 |
| 348 </template> | 350 </template> |
| 349 | 351 |
| 350 </polymer-element><polymer-element name="instance-view" extends="observatory-ele
ment"> | 352 </polymer-element><polymer-element name="instance-view" extends="observatory-ele
ment"> |
| 351 <template> | 353 <template> |
| 352 <div class="row"> | 354 <div class="row"> |
| 353 <div class="col-md-8 col-md-offset-2"> | 355 <div class="col-md-8 col-md-offset-2"> |
| 354 <div class="panel panel-warning"> | 356 <div class="panel panel-warning"> |
| 355 <div class="panel-heading"> | 357 <div class="panel-heading"> |
| 356 Instance of | 358 Instance of |
| 357 <class-ref app="{{ app }}" ref="{{ instance['class'] }}"></class-ref> | 359 <class-ref app="{{ app }}" ref="{{ instance['class'] }}"></class-ref> |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 </template> | 584 </template> |
| 583 <template if="{{ messageType == 'Function' }}"> | 585 <template if="{{ messageType == 'Function' }}"> |
| 584 <function-view app="{{ app }}" function="{{ message }}"></function-view> | 586 <function-view app="{{ app }}" function="{{ message }}"></function-view> |
| 585 </template> | 587 </template> |
| 586 <template if="{{ messageType == 'Code' }}"> | 588 <template if="{{ messageType == 'Code' }}"> |
| 587 <code-view app="{{ app }}" code="{{ message }}"></code-view> | 589 <code-view app="{{ app }}" code="{{ message }}"></code-view> |
| 588 </template> | 590 </template> |
| 589 <template if="{{ messageType == 'Script' }}"> | 591 <template if="{{ messageType == 'Script' }}"> |
| 590 <script-view app="{{ app }}" script="{{ message }}"></script-view> | 592 <script-view app="{{ app }}" script="{{ message }}"></script-view> |
| 591 </template> | 593 </template> |
| 594 <template if="{{ messageType == 'CPU' }}"> |
| 595 <json-view json="{{ message }}"></json-view> |
| 596 </template> |
| 592 <!-- Add new views and message types in the future here. --> | 597 <!-- Add new views and message types in the future here. --> |
| 593 </template> | 598 </template> |
| 594 | 599 |
| 595 </polymer-element><polymer-element name="navigation-bar" extends="observatory-el
ement"> | 600 </polymer-element><polymer-element name="navigation-bar" extends="observatory-el
ement"> |
| 596 <template> | 601 <template> |
| 597 <nav class="navbar navbar-default" role="navigation"> | 602 <nav class="navbar navbar-default" role="navigation"> |
| 598 <div class="navbar-header"> | 603 <div class="navbar-header"> |
| 599 <a class="navbar-brand" href="">Observatory</a> | 604 <a class="navbar-brand" href="">Observatory</a> |
| 600 </div> | 605 </div> |
| 601 <div class="collapse navbar-collapse navbar-ex1-collapse"> | 606 <div class="collapse navbar-collapse navbar-ex1-collapse"> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 <isolate-profile app="{{ app }}"></isolate-profile> | 671 <isolate-profile app="{{ app }}"></isolate-profile> |
| 667 </template> | 672 </template> |
| 668 <template if="{{ app.locationManager.profile == false }}"> | 673 <template if="{{ app.locationManager.profile == false }}"> |
| 669 <response-viewer app="{{ app }}"></response-viewer> | 674 <response-viewer app="{{ app }}"></response-viewer> |
| 670 </template> | 675 </template> |
| 671 </template> | 676 </template> |
| 672 | 677 |
| 673 </polymer-element> | 678 </polymer-element> |
| 674 <observatory-application></observatory-application> | 679 <observatory-application></observatory-application> |
| 675 | 680 |
| 676 </body></html> | 681 </body></html> |
| OLD | NEW |