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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/isolate_summary.html

Issue 165643003: Rework <script-ref>: - optional 'line' parameter - use a shorter version of the script url in the a… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 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 <head> 1 <head>
2 <link rel="import" href="function_ref.html">
2 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="script_ref.html">
3 </head> 5 </head>
4 <polymer-element name="isolate-summary" extends="observatory-element"> 6 <polymer-element name="isolate-summary" extends="observatory-element">
5 <template> 7 <template>
6 <div class="row"> 8 <div class="row">
7 <div class="col-md-1"> 9 <div class="col-md-1">
8 <img src="img/isolate_icon.png" class="img-polaroid"> 10 <img src="img/isolate_icon.png" class="img-polaroid">
9 </div> 11 </div>
10 12
11 <div class="col-md-1">{{ isolate.name }}</div> 13 <div class="col-md-1">{{ isolate.name }}</div>
12 14
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 run 76 run
75 </template> 77 </template>
76 ( <a href="{{ app.locationManager.relativeLink(isolate.id, 'stacktrace') }}">stack trace</a> ) 78 ( <a href="{{ app.locationManager.relativeLink(isolate.id, 'stacktrace') }}">stack trace</a> )
77 </div> 79 </div>
78 </div> 80 </div>
79 <div class="row"> 81 <div class="row">
80 <div class="col-md-3"> 82 <div class="col-md-3">
81 </div> 83 </div>
82 <div class="col-md-6"> 84 <div class="col-md-6">
83 <template if="{{ isolate.topFrame != null }}"> 85 <template if="{{ isolate.topFrame != null }}">
84 <a href="{{ app.locationManager.relativeLink(isolate.id, isolate.topFr ame['function']['id']) }}"> 86 <function-ref app="{{ app }}" isolate="{{ isolate }}"
85 {{ isolate.topFrame['function']['user_name'] }} 87 ref="{{ isolate.topFrame['function'] }}"></function-ref>
86 </a> 88 (<script-ref app="{{ app }}" isolate="{{ isolate }}"
87 (<a href="{{ app.locationManager.relativeLink(isolate.id, isolate.topF rame['script']['id']) }}"> 89 ref="{{ isolate.topFrame['script'] }}"
88 {{ isolate.topFrame | fileAndLine }} 90 line="{{ isolate.topFrame['line'] }}"></script-ref>)
89 </a>)
90 <br> 91 <br>
91 <pre>{{ isolate.topFrame['line'] }} &nbsp; {{ isolate.topFrame['lineSt ring'] }}</pre> 92 <pre>{{ isolate.topFrame['line'] }} &nbsp; {{ isolate.topFrame['lineSt ring'] }}</pre>
92 </template> 93 </template>
93 </div> 94 </div>
94 <div class="col-md-3"> 95 <div class="col-md-3">
95 </div> 96 </div>
96 </div> 97 </div>
97 </template> 98 </template>
98 <script type="application/dart" src="isolate_summary.dart"></script> 99 <script type="application/dart" src="isolate_summary.dart"></script>
99 </polymer-element> 100 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698